Trait

org.scaladebugger.api.profiles.pure.steps

PureStepProfile

Related Doc: package steps

Permalink

trait PureStepProfile extends StepProfile

Represents a pure profile for steps that adds no extra logic on top of the standard JDI.

Linear Supertypes
StepProfile, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PureStepProfile
  2. StepProfile
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type StepEventAndData = (StepEvent, Seq[JDIEventDataResult])

    Permalink

    Represents a step event and any associated data.

    Represents a step event and any associated data.

    Definition Classes
    StepProfile

Abstract Value Members

  1. abstract val eventManager: EventManager

    Permalink
    Attributes
    protected
  2. abstract val stepManager: StepManager

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def createStepFuture(newStepRequestFunc: (ThreadReference, Seq[JDIRequestArgument]) ⇒ Try[String], threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Creates a new step request and constructs a future for when its result returns.

    Creates a new step request and constructs a future for when its result returns.

    newStepRequestFunc

    The function used to create the request and return the id of the request

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The future containing the result from the step request

    Attributes
    protected
  7. def createStepListener(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): IdentityPipeline[StepEvent]

    Permalink

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadInfoProfile

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events

    Definition Classes
    StepProfile
  8. def createStepListenerWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): IdentityPipeline[StepEventAndData]

    Permalink

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadInfoProfile

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events and any retrieved data based on requests from extra arguments

    Definition Classes
    StepProfile
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def isStepRequestPending(threadInfoProfile: ThreadInfoProfile): Boolean

    Permalink

    Determines if there is any step request for the specified thread that is pending.

    Determines if there is any step request for the specified thread that is pending.

    threadInfoProfile

    The thread with which is receiving the step request

    returns

    True if there is at least one step request with the specified name in the specified class that is pending, otherwise false

    Definition Classes
    PureStepProfileStepProfile
  16. def isStepRequestWithArgsPending(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Boolean

    Permalink

    Determines if there is any step request for the specified thread with matching arguments that is pending.

    Determines if there is any step request for the specified thread with matching arguments that is pending.

    threadInfoProfile

    The thread with which is receiving the step request

    extraArguments

    The additional arguments provided to the specific step request

    returns

    True if there is at least one step request with the specified name and arguments in the specified class that is pending, otherwise false

    Definition Classes
    PureStepProfileStepProfile
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. def newStepPipeline(args: (ThreadInfoProfile, Seq[JDIEventArgument])): IdentityPipeline[StepEventAndData]

    Permalink

    Creates a new pipeline of step events.

    Creates a new pipeline of step events. This is not memoized as step events are one-per-thread and are closed after the pipeline's future is completed.

    args

    The additional event arguments to provide to the event handler feeding the new pipeline

    returns

    The new step event and data pipeline

    Attributes
    protected
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def removeAllStepRequests(): Seq[StepRequestInfo]

    Permalink

    Removes all step requests.

    Removes all step requests.

    returns

    The collection of information about removed step requests

    Definition Classes
    PureStepProfileStepProfile
  22. def removeStepRequestWithArgs(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Option[StepRequestInfo]

    Permalink

    Removes all step requests for the given thread with the specified extra arguments.

    Removes all step requests for the given thread with the specified extra arguments.

    threadInfoProfile

    The thread with which is receiving the step request

    extraArguments

    the additional arguments provided to the specific step request

    returns

    Some information about the removed request if it existed, otherwise None

    Definition Classes
    PureStepProfileStepProfile
  23. def removeStepRequests(threadInfoProfile: ThreadInfoProfile): Seq[StepRequestInfo]

    Permalink

    Removes all step requests for the given thread.

    Removes all step requests for the given thread.

    threadInfoProfile

    The thread with which is receiving the step request

    returns

    The collection of information about removed step requests

    Definition Classes
    PureStepProfileStepProfile
  24. def stepIntoLine(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEvent]

    Permalink

    Steps in from the current location to the next line.

    Steps in from the current location to the next line.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

    Definition Classes
    StepProfile
  25. def stepIntoLineWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Steps in from the current location to the next line.

    Steps in from the current location to the next line.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting event and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  26. def stepIntoMin(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEvent]

    Permalink

    Steps in from the current location to the next location.

    Steps in from the current location to the next location.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

    Definition Classes
    StepProfile
  27. def stepIntoMinWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Steps in from the current location to the next location.

    Steps in from the current location to the next location.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting event and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  28. def stepOutLine(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEvent]

    Permalink

    Steps out from the current location to the next line.

    Steps out from the current location to the next line.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

    Definition Classes
    StepProfile
  29. def stepOutLineWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Constructs a stream of step events caused by stepping out from the current location to the next line.

    Constructs a stream of step events caused by stepping out from the current location to the next line.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting event and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  30. def stepOutMin(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEvent]

    Permalink

    Steps out from the current location to the next location.

    Steps out from the current location to the next location.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

    Definition Classes
    StepProfile
  31. def stepOutMinWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Constructs a stream of step events caused by stepping out from the current location to the next location.

    Constructs a stream of step events caused by stepping out from the current location to the next location.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting event and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  32. def stepOverLine(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEvent]

    Permalink

    Steps over from the current location to the next line.

    Steps over from the current location to the next line.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

    Definition Classes
    StepProfile
  33. def stepOverLineWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Steps over from the current location to the next line.

    Steps over from the current location to the next line.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting event and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  34. def stepOverMin(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEvent]

    Permalink

    Steps over from the current location to the next location.

    Steps over from the current location to the next location.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

    Definition Classes
    StepProfile
  35. def stepOverMinWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Future[StepEventAndData]

    Permalink

    Steps over from the current location to the next location.

    Steps over from the current location to the next location.

    threadInfoProfile

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting event and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  36. def stepRequests: Seq[StepRequestInfo]

    Permalink

    Retrieves the collection of active and pending step requests.

    Retrieves the collection of active and pending step requests.

    returns

    The collection of information on step requests

    Definition Classes
    PureStepProfileStepProfile
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. def tryCreateStepListener(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Try[IdentityPipeline[StepEvent]]

    Permalink

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadInfoProfile

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events

    Definition Classes
    StepProfile
  40. def tryCreateStepListenerWithData(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Try[IdentityPipeline[(StepEvent, Seq[JDIEventDataResult])]]

    Permalink

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadInfoProfile

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events and any retrieved data based on requests from extra arguments

    Definition Classes
    PureStepProfileStepProfile
  41. def tryPipelineToFuture(result: Try[IdentityPipeline[StepEventAndData]]): Future[StepEventAndData]

    Permalink

    Converts the try of a pipeline into a future.

    Converts the try of a pipeline into a future. If the pipeline was created, convert it to a future. Otherwise, convert the failure to an immediate failed future.

    result

    The attempted pipeline

    returns

    The future representing the attempted pipeline's

    Attributes
    protected
  42. def tryRemoveAllStepRequests(): Try[Seq[StepRequestInfo]]

    Permalink

    Removes all step requests.

    Removes all step requests.

    returns

    Success containing the collection of information about removed step requests, otherwise a failure

    Definition Classes
    StepProfile
  43. def tryRemoveStepRequestWithArgs(threadInfoProfile: ThreadInfoProfile, extraArguments: JDIArgument*): Try[Option[StepRequestInfo]]

    Permalink

    Removes all step requests for the given thread with the specified extra arguments.

    Removes all step requests for the given thread with the specified extra arguments.

    threadInfoProfile

    The thread with which is receiving the step request

    extraArguments

    the additional arguments provided to the specific step request

    returns

    Success containing Some information if it existed (or None if it did not), otherwise a failure

    Definition Classes
    StepProfile
  44. def tryRemoveStepRequests(threadInfoProfile: ThreadInfoProfile): Try[Seq[StepRequestInfo]]

    Permalink

    Removes all step requests for the given thread.

    Removes all step requests for the given thread.

    threadInfoProfile

    The thread with which is receiving the step request

    returns

    Success containing the collection of information about removed step requests, otherwise a failure

    Definition Classes
    StepProfile
  45. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from StepProfile

Inherited from AnyRef

Inherited from Any

Ungrouped