github.com/asynkron/protoactor-go@v0.0.0-20240308120642-ef91a6abee75/actor/queue.go (about)

     1  package actor
     2  
     3  type queue interface {
     4  	Push(interface{})
     5  	Pop() interface{}
     6  }