Package

akka

spray

Permalink

package spray

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. spray
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class LazyActorRef extends UnregisteredActorRefBase

    Permalink

    An ActorRef which - offers the ability to hook caller-side logic into a tell - is registered lazily

    An ActorRef which - offers the ability to hook caller-side logic into a tell - is registered lazily

    CAUTION: In order to prevent memory leaks you need to make sure that the ref is explicitly stopped via stop in _all_ cases, even if tell/bang is never called!

  2. abstract class UnregisteredActorRef extends UnregisteredActorRefBase

    Permalink

    An ActorRef which - offers the ability to hook caller-side logic into the reply message path - is never registered anywhere, i.e.

    An ActorRef which - offers the ability to hook caller-side logic into the reply message path - is never registered anywhere, i.e. can be GCed as soon the receiver drops it or is GCed itself

    CAUTION: This ActorRef is _not_ addressable from a non-local JVM and it also breaks some otherwise valid invariants like system.actorFor(ref.path.toString).equals(ref) in the local-only context. It should therefore be used only in purely local environments and in consideration of the limitations. You can, however, manually wrap it with a registered ActorRef using one of the register... calls.

  3. abstract class UnregisteredActorRefBase extends InternalActorRef with MinimalActorRef

    Permalink

Value Members

  1. object LazyActorRef extends Serializable

    Permalink
  2. object RefUtils

    Permalink
  3. object UnregisteredActorRef extends Serializable

    Permalink
  4. object UnregisteredActorRefBase extends Serializable

    Permalink
  5. def createByteStringUnsafe(bytes: Array[Byte], start: Int, len: Int): ByteString

    Permalink
  6. def createByteStringUnsafe(bytes: Array[Byte]): ByteString

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped