actor_ref.go 217 B

123456789101112
  1. package actor
  2. // Ref a actor reference
  3. type Ref interface {
  4. // get actor id
  5. GetActorId() string
  6. // tell actor a message
  7. Tell(msg Msg)
  8. // tell actor a message with high priority
  9. TellWithHighPriority(msg Msg)
  10. }