package actor // Ref a actor reference type Ref interface { // get actor id GetActorId() string // tell actor a message Tell(msg Msg) // tell actor a message with high priority TellWithHighPriority(msg Msg) }