Searched defs:RingBuffer (Results 1 – 2 of 2) sorted by relevance
34 type RingBuffer struct { struct35 consolidateFunc MsgConsolidateFunc37 m sync.Mutex // Protects the fields that follow.39 next int // Index in msgs where next entry will be written.40 msgs []Msg80 func (trb *RingBuffer) Add(title string, body []byte) {113 func (trb *RingBuffer) Cap() int {118 func (trb *RingBuffer) Last() *Msg {125 func (trb *RingBuffer) lastUNLOCKED() *Msg {138 func (trb *RingBuffer) Msgs() []Msg {
149 RingBuffer() { in RingBuffer() function