org.scaladebugger.api.debuggers

ListeningDebugger

class ListeningDebugger extends Debugger with Logging

Represents a debugger that listens for connections from remote JVMs.

Linear Supertypes
Debugger, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ListeningDebugger
  2. Debugger
  3. Logging
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. implicit class LoggerExtras extends AnyRef

    Definition Classes
    Logging

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addPendingScalaVirtualMachine(scalaVirtualMachine: ScalaVirtualMachine): Option[ScalaVirtualMachine]

    Adds a new Scala virtual machine whose pending operations will be applied to any new Scala virtual machine resulting from this debugger.

    Adds a new Scala virtual machine whose pending operations will be applied to any new Scala virtual machine resulting from this debugger.

    scalaVirtualMachine

    The Scala virtual machine to add

    returns

    Some Scala virtual machine if added, otherwise None

    Definition Classes
    Debugger
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def assertJdiLoaded(): Unit

    Attempts to load the JDI, asserting that it can be and is loaded.

    Attempts to load the JDI, asserting that it can be and is loaded.

    Attributes
    protected
    Definition Classes
    Debugger
    Annotations
    @throws( classOf[AssertionError] )
    Exceptions thrown
    AssertionError

    If failed to load the JDI

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def connectedScalaVirtualMachines: Seq[ScalaVirtualMachine]

    Retrieves the connected virtual machines for the debugger.

    Retrieves the connected virtual machines for the debugger.

    returns

    The collection of connected virtual machines

    Definition Classes
    ListeningDebuggerDebugger
  11. def connectedVirtualMachines: Seq[VirtualMachine]

    Retrieves the current listing of virtual machines that have connected to this debugger.

    Retrieves the current listing of virtual machines that have connected to this debugger.

    returns

    The collection of connected virtual machines

  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  16. def getPendingScalaVirtualMachines: Seq[ScalaVirtualMachine]

    Retrieves the collection of Scala virtual machines whose pending operations will be applied to any new Scala virtual machine resulting from this debugger.

    Retrieves the collection of Scala virtual machines whose pending operations will be applied to any new Scala virtual machine resulting from this debugger.

    returns

    The collection of Scala virtual machines

    Definition Classes
    Debugger
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. def isAvailable: Boolean

    Determines whether or not the debugger is available for use.

    Determines whether or not the debugger is available for use.

    returns

    True if the debugger is available, otherwise false

    Definition Classes
    Debugger
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def isRunning: Boolean

    Indicates whether or not the debugger is running.

    Indicates whether or not the debugger is running.

    returns

    True if it is running, otherwise false

    Definition Classes
    ListeningDebuggerDebugger
  21. val jdiLoader: JDILoader

    Attributes
    protected
    Definition Classes
    Debugger
  22. def listenTask[T](connector: ListeningConnector, arguments: Map[String, Argument], defaultProfile: String, startProcessingEvents: Boolean, newVirtualMachineFunc: (StandardScalaVirtualMachine) ⇒ T): Unit

    Checks for an incoming connection, creates a new ScalaVirtualMachine for the connection, and invokes the callback with the new ScalaVirtualMachine instance.

    Checks for an incoming connection, creates a new ScalaVirtualMachine for the connection, and invokes the callback with the new ScalaVirtualMachine instance.

    T

    The return type of the callback

    connector

    The connector to use when listening

    arguments

    The arguments for the connector to use when accepting new connections

    defaultProfile

    The default profile to use with the virtual machine

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    newVirtualMachineFunc

    The callback for the new ScalaVirtualMachine

    Attributes
    protected
  23. val logger: Logger

    Attributes
    protected
    Definition Classes
    Logging
  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. def newDummyScalaVirtualMachine(): ScalaVirtualMachine

    Creates a new dummy Scala virtual machine instance that can be used to prepare pending requests to apply to the Scala virtual machines generated by the debugger once it starts.

    Creates a new dummy Scala virtual machine instance that can be used to prepare pending requests to apply to the Scala virtual machines generated by the debugger once it starts.

    returns

    The new dummy (no-op) Scala virtual machine instance

    Definition Classes
    Debugger
  26. def newScalaVirtualMachine(virtualMachine: VirtualMachine, profileManager: ProfileManager, loopingTaskRunner: LoopingTaskRunner): StandardScalaVirtualMachine

    Creates a new ScalaVirtualMachine instance.

    Creates a new ScalaVirtualMachine instance.

    virtualMachine

    The underlying virtual machine

    profileManager

    The profile manager associated with the virtual machine

    loopingTaskRunner

    The looping task runner used to process events for the virtual machine

    returns

    The new ScalaVirtualMachine instance

    Attributes
    protected
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. val remoteJvmOptions: String

    Represents the JVM options to feed to remote JVMs whom will connect to this debugger.

  30. def removePendingScalaVirtualMachine(scalaVirtualMachineId: String): Option[ScalaVirtualMachine]

    Removes a Scala virtual machine from the list whose pending operations would be applied to any new Scala virtual machine resulting from this debugger.

    Removes a Scala virtual machine from the list whose pending operations would be applied to any new Scala virtual machine resulting from this debugger.

    scalaVirtualMachineId

    The id of the Scala virtual machine to remove

    returns

    Some Scala virtual machine if removed, otherwise None

    Definition Classes
    Debugger
  31. def start[T](defaultProfile: String, startProcessingEvents: Boolean, newVirtualMachineFunc: (ScalaVirtualMachine) ⇒ T): Unit

    Starts the debugger, resulting in opening the specified socket to listen for remote JVM connections.

    Starts the debugger, resulting in opening the specified socket to listen for remote JVM connections.

    T

    The return type of the callback function

    defaultProfile

    The default profile to use with the new VMs

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    newVirtualMachineFunc

    The function to be invoked once per JVM that connects to this debugger

    Definition Classes
    ListeningDebuggerDebugger
  32. def start[T](startProcessingEvents: Boolean, newVirtualMachineFunc: (ScalaVirtualMachine) ⇒ T): Unit

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances. Uses the default profile for new VMs.

    T

    The return type of the callback function

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    newVirtualMachineFunc

    The function that will be called when a new virtual machine connection is created as a result of this debugger

    Definition Classes
    Debugger
  33. def start[T](defaultProfile: String, newVirtualMachineFunc: (ScalaVirtualMachine) ⇒ T): Unit

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    T

    The return type of the callback function

    defaultProfile

    The default profile to use with the new VMs

    newVirtualMachineFunc

    The function that will be called when a new virtual machine connection is created as a result of this debugger

    Definition Classes
    Debugger
  34. def start[T](newVirtualMachineFunc: (ScalaVirtualMachine) ⇒ T): Unit

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances. Uses the default profile for new VMs.

    T

    The return type of the callback function

    newVirtualMachineFunc

    The function that will be called when a new virtual machine connection is created as a result of this debugger

    Definition Classes
    Debugger
  35. def start(defaultProfile: String, startProcessingEvents: Boolean): Future[ScalaVirtualMachine]

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    defaultProfile

    The default profile to use with the new VMs

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    returns

    The future representing the connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned future represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  36. def start(startProcessingEvents: Boolean): Future[ScalaVirtualMachine]

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances. Uses the default profile for new VMs.

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    returns

    The future representing the connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned future represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  37. def start(defaultProfile: String): Future[ScalaVirtualMachine]

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    defaultProfile

    The default profile to use with the new VMs

    returns

    The future representing the connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned future represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  38. def start(): Future[ScalaVirtualMachine]

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances. Uses the default profile for new VMs.

    returns

    The future representing the connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned future represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  39. def start(timeout: Duration, defaultProfile: String, startProcessingEvents: Boolean): ScalaVirtualMachine

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    timeout

    The maximum time to wait for the JVM to connect

    defaultProfile

    The default profile to use with the new VMs

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    returns

    The connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned Scala virtual machine represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  40. def start(timeout: Duration, startProcessingEvents: Boolean): ScalaVirtualMachine

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances. Uses the default profile for new VMs.

    timeout

    The maximum time to wait for the JVM to connect

    startProcessingEvents

    If true, events are immediately processed by the VM as soon as it is connected

    returns

    The connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned Scala virtual machine represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  41. def start(timeout: Duration, defaultProfile: String): ScalaVirtualMachine

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    timeout

    The maximum time to wait for the JVM to connect

    defaultProfile

    The default profile to use with the new VMs

    returns

    The connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned Scala virtual machine represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  42. def start(timeout: Duration): ScalaVirtualMachine

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances.

    Starts the debugger, performing any necessary setup and ending with an initialized debugger that is or will be capable of connecting to one or more virtual machine instances. Uses the default profile for new VMs.

    timeout

    The maximum time to wait for the JVM to connect

    returns

    The connected Scala virtual machine

    Definition Classes
    Debugger
    Note

    Returned Scala virtual machine represents next connected Scala virtual machine. All other Scala virtual machines connected after the first one will be ignored.

  43. def stop(): Unit

    Stops listening for incoming connections and shuts down the task runner.

    Stops listening for incoming connections and shuts down the task runner.

    Definition Classes
    ListeningDebuggerDebugger
  44. def supportsMultipleConnections: Boolean

    Indicates whether or not the listening debugger supports multiple JVM connections or just a single JVM connecting.

    Indicates whether or not the listening debugger supports multiple JVM connections or just a single JVM connecting.

    returns

    True if multiple JVMs can connect to this debugger, otherwise false

  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  46. def toString(): String

    Definition Classes
    AnyRef → Any
  47. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def withPending(scalaVirtualMachine: ScalaVirtualMachine): Debugger

    Adds a new Scala virtual machine to use for pending operations.

    Adds a new Scala virtual machine to use for pending operations. Essentially a wrapper around Debugger.addPendingScalaVirtualMachine).

    scalaVirtualMachine

    The Scala virtual machine to add

    returns

    The debugger instance updated with the new pending operations

    Definition Classes
    Debugger
  51. def withoutPending(scalaVirtualMachineId: String): Debugger

    Removes a Scala virtual machine used for pending operations.

    Removes a Scala virtual machine used for pending operations. Essentially a wrapper around Debugger.removePendingScalaVirtualMachine.

    scalaVirtualMachineId

    The id of the Scala virtual machine to remove

    returns

    The updated debugger instance

    Definition Classes
    Debugger

Inherited from Debugger

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped