queue

package
v0.0.0-...-fa26ab0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 29, 2020 License: Apache-2.0, BSD-2-Clause Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Queue

type Queue struct {
	// contains filtered or unexported fields
}

Queue represents a ring buffer.

func New

func New(capacity int) *Queue

New creates a new queue with the specified capacity.

func (*Queue) Capacity

func (queue *Queue) Capacity() int

Capacity returns the capacity of the queue.

func (*Queue) Offer

func (queue *Queue) Offer(element interface{}) bool

Offer adds an element to the queue and returns true. If the queue is full, it drops it and returns false.

func (*Queue) Poll

func (queue *Queue) Poll() (element interface{}, success bool)

Poll returns and removes the oldest element in the queue and true if successful. If returns false if the queue is empty.

func (*Queue) Size

func (queue *Queue) Size() int

Size returns the size of the queue.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL