akka

spray

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
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract class LazyActorRef extends UnregisteredActorRefBase

    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

    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

Value Members

  1. object LazyActorRef extends Serializable

  2. object RefUtils

  3. object UnregisteredActorRef extends Serializable

  4. object UnregisteredActorRefBase extends Serializable

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped