final
case class
Invocation[R <: Has[_], I, A](method: Method[R, I, A], input: I, output: A) extends Product with Serializable
Instance Constructors
-
new
Invocation(method: Method[R, I, A], input: I, output: A)
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
val
input: I
-
final
def
isInstanceOf[T0]: Boolean
-
val
method: Method[R, I, A]
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
val
output: A
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
An
Invocation[R, I, A]
models a single invocation of aMethod[R, I, A]
, including both the input to the method invocationI
and the output from the method invocationA
.