ActorMsg
@Js
const class ActorMsg : Obj
ActorMsg provides simple immutable tuple to use for actor messages.
Constructor with three arguments
Constructor with two arguments
Constructor with five arguments
Constructor with four arguments
Constructor with one argument
Constructor with zero arguments
Argument a
Argument b
Argument c
Argument d
Argument e
Message identifier key, typically string or enum
Return debug string representation
Equality is based on id and arguments
Hash is based on id and arguments
const Obj? : a
Argument a
const Obj? : b
Argument b
const Obj? : c
Argument c
const Obj? : d
Argument d
const Obj? : e
Argument e
virtual Bool equals(Obj? that)
Equality is based on id and arguments
virtual Int hash()
Hash is based on id and arguments
const Obj : id
Message identifier key, typically string or enum
new make0(Obj id)
Constructor with zero arguments
new make1(Obj id, Obj? a)
Constructor with one argument
new make2(Obj id, Obj? a, Obj? b)
Constructor with two arguments
new make3(Obj id, Obj? a, Obj? b, Obj? c)
Constructor with three arguments
new make4(Obj id, Obj? a, Obj? b, Obj? c, Obj? d)
Constructor with four arguments
new make5(Obj id, Obj? a, Obj? b, Obj? c, Obj? d, Obj? e)
Constructor with five arguments
virtual Str toStr()
Return debug string representation