Packages

c

akka.actor.TypedActor

MethodCall

final case class MethodCall(method: Method, parameters: Array[AnyRef]) extends Product with Serializable

This class represents a Method call, and has a reference to the Method to be called and the parameters to supply It's sent to the ActorRef backing the TypedActor and can be serialized and deserialized

Source
TypedActor.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MethodCall
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. 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 MethodCall(method: Method, parameters: Array[AnyRef])

Value Members

  1. def apply(instance: AnyRef): AnyRef

    Invokes the Method on the supplied instance

    Invokes the Method on the supplied instance

    Throws the underlying exception if there's an InvocationTargetException thrown on the invocation.

  2. def isOneWay: Boolean
  3. val method: Method
  4. val parameters: Array[AnyRef]
  5. def returnsFuture: Boolean
  6. def returnsJOption: Boolean
  7. def returnsOption: Boolean