Packages

c

gopher

GopherImpl

class GopherImpl extends GopherAPI with Extension

Akka extension which provide gopherApi interface

See also

GopherAPI

Linear Supertypes
Extension, GopherAPI, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GopherImpl
  2. Extension
  3. GopherAPI
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GopherImpl(system: ExtendedActorSystem)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def actorSystem: ActorSystem

    actor system which was passed during creation

    actor system which was passed during creation

    Definition Classes
    GopherAPI
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def config: Config

    the configuration of the gopher system.

    the configuration of the gopher system. By default is contained under 'gopher' key in top-level config.

    Definition Classes
    GopherAPI
  8. def currentFlow: CurrentFlowTermination.type
    Definition Classes
    GopherAPI
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def executionContext: ExecutionContext

    execution context used for managing calculation steps in channels engine.

    execution context used for managing calculation steps in channels engine.

    Definition Classes
    GopherAPI
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def futureInput[A](future: Future[A]): FutureInput[A]

    Represent Scala future as channel from which we can read one value.

    Represent Scala future as channel from which we can read one value.

    Definition Classes
    GopherAPI
    See also

    gopher.channels.FutureInput

  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  16. lazy val idleTimeout: FiniteDuration
    Definition Classes
    GopherAPI
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def iterableInput[A](iterable: Iterable[A]): Input[A]

    Represent Scala iterable as channel, where all values can be readed in order of iteration.

    Represent Scala iterable as channel, where all values can be readed in order of iteration.

    Definition Classes
    GopherAPI
  19. macro def make[T](args: Any*): T

    Generic schema for making objects, which requiere gopherAPI for constructions.

    Generic schema for making objects, which requiere gopherAPI for constructions.

    Definition Classes
    GopherAPI
  20. def makeChannel[A](capacity: Int = 0): Channel[A]

    obtain channel

    obtain channel

    val channel = gopherApi.makeChannel[Int]()
    channel.awrite(1 to 100)
    Definition Classes
    GopherAPI
    Annotations
    @inline()
  21. def makeEffectedChannel[A](ch: Channel[A], threadingPolicy: ThreadingPolicy = ThreadingPolicy.Single): EffectedChannel[A]
    Definition Classes
    GopherAPI
  22. def makeEffectedInput[A](in: Input[A], threadingPolicy: ThreadingPolicy = ThreadingPolicy.Single): EffectedInput[A]

    create effected input with given thread-policy

    create effected input with given thread-policy

    Definition Classes
    GopherAPI
  23. def makeEffectedOutput[A](out: Output[A], threadingPolicy: ThreadingPolicy = ThreadingPolicy.Single): EffectedOutput[A]
    Definition Classes
    GopherAPI
  24. macro def makeTransputer[T <: Transputer]: T
    Definition Classes
    GopherAPI
  25. macro def makeTransputer[T <: Transputer](recoveryPolicy: PartialFunction[Throwable, Directive]): T

    create and start instance of transputer with given recovery policy.

    create and start instance of transputer with given recovery policy.

    Definition Classes
    GopherAPI
    See also

    gopher.Transputer

  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  29. macro def replicate[T <: Transputer](n: Int): Transputer

    create transputer which contains n instances of X where ports are connected to the appropriate ports of each instance in paraller.

    create transputer which contains n instances of X where ports are connected to the appropriate ports of each instance in paraller.

    val persistStep = replicate[PersistTransputer](nDBConnections)
    Definition Classes
    GopherAPI
  30. val select: SelectFactory

    obtain select factory

    obtain select factory

    goopherApi.select.once[String] {
      case x: a.read => s"${x} from A"
      case x: b.read => s"${x} from B"
      case _ => "IDLE"
    }
    Definition Classes
    GopherAPI
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Extension

Inherited from GopherAPI

Inherited from AnyRef

Inherited from Any

Ungrouped