Class/Object

io.reactors

ReactorSystem

Related Docs: object ReactorSystem | package reactors

Permalink

class ReactorSystem extends Services

A system used to create, track and identify reactors.

A reactor system is composed of a set of reactors that have a common configuration.

Linear Supertypes
Services, Reflectable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReactorSystem
  2. Services
  3. Reflectable
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReactorSystem(name: String, bundle: Bundle = ReactorSystem.defaultBundle)

    Permalink

    name

    the name of this reactor system

    bundle

    the scheduler bundle used by the reactor system

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to any2stringadd[ReactorSystem] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ReactorSystem, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to ArrowAssoc[ReactorSystem] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  7. val bundle: Bundle

    Permalink

    the scheduler bundle used by the reactor system

  8. val channels: Channels

    Permalink

    The register of channels in this reactor system.

    The register of channels in this reactor system.

    Used for creating and finding channels.

    Definition Classes
    Services
  9. val clock: Clock

    Permalink

    Clock services.

    Clock services.

    Definition Classes
    Services
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def config: Configuration

    Permalink

    System configuration

    System configuration

    Definition Classes
    Services
  12. val debugger: Debugger

    Permalink

    Debugger services.

    Debugger services.

    Definition Classes
    Services
  13. def ensuring(cond: (ReactorSystem) ⇒ Boolean, msg: ⇒ Any): ReactorSystem

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to Ensuring[ReactorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (ReactorSystem) ⇒ Boolean): ReactorSystem

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to Ensuring[ReactorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): ReactorSystem

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to Ensuring[ReactorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): ReactorSystem

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to Ensuring[ReactorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to StringFormat[ReactorSystem] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. val io: Io

    Permalink

    I/O services.

    I/O services.

    Definition Classes
    Services
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. val log: Log

    Permalink

    Logging services.

    Logging services.

    Definition Classes
    Services
  26. val name: String

    Permalink

    the name of this reactor system

  27. val names: Names

    Permalink

    Naming services.

    Naming services.

    Definition Classes
    Services
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. val net: Net

    Permalink

    Network services.

    Network services.

    Definition Classes
    Services
  30. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  32. lazy val remote: Remote

    Permalink

    Remoting services, used to contact other reactor systems.

    Remoting services, used to contact other reactor systems.

    Definition Classes
    Services
  33. def service[T <: Service](implicit arg0: ClassTag[T]): T

    Permalink

    Arbitrary service.

    Arbitrary service.

    Definition Classes
    Services
  34. def shutdown(): Unit

    Permalink

    Shuts down services.

  35. def shutdownServices(): Unit

    Permalink

    Shut down all services.

    Shut down all services.

    Attributes
    protected
    Definition Classes
    Services
  36. def spawn[T](p: Proto[Reactor[T]])(implicit arg0: Arrayable[T]): Channel[T]

    Permalink

    Creates a new reactor instance in this reactor system.

    Creates a new reactor instance in this reactor system.

    Use case:

    def spawn(proto: Proto[Reactor[T]]): Channel[T]

    Implementations of this method must initialize the reactor frame with the createFrame method, add the reactor to the specific bookkeeping code, and then call the wake method on the reactor frame to start it for the first time. Finally, they must return the reactor's default channel.

    T

    the type of the events for the reactor

    p

    the prototype for the reactor

    returns

    the channel for this reactor

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

    Permalink
    Definition Classes
    AnyRef
  38. def system: ReactorSystem

    Permalink
    Definition Classes
    ReactorSystemServices
  39. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  40. def trySpawnReactor[T](proto: Proto[Reactor[T]])(implicit arg0: Arrayable[T]): Channel[T]

    Permalink
    Attributes
    protected[io.reactors]
  41. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (ReactorSystem, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ReactorSystem to ArrowAssoc[ReactorSystem] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Services

Inherited from Reflectable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ReactorSystem to any2stringadd[ReactorSystem]

Inherited by implicit conversion StringFormat from ReactorSystem to StringFormat[ReactorSystem]

Inherited by implicit conversion Ensuring from ReactorSystem to Ensuring[ReactorSystem]

Inherited by implicit conversion ArrowAssoc from ReactorSystem to ArrowAssoc[ReactorSystem]

Ungrouped