Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Queue ¶
type Queue interface {
// push a data into queue
Push(v interface{})
// pop first data
Pop() (interface{}, bool)
// pop many of data
PopMany(count int64) ([]interface{}, bool)
// pop all data
PopAll() ([]interface{}, bool)
// peek first data
Front() (interface{}, bool)
// peek end data
End() (interface{}, bool)
// get length of queue
Length() int64
// judge queue's lenght if 0
IsEmpty() bool
}
Queue functions for manager datas in queue
Click to show internal directories.
Click to hide internal directories.