queue

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2022 License: Apache-2.0 Imports: 5 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 {
	sync.Mutex
	// contains filtered or unexported fields
}

Queue queue

func New

func New() *Queue

New

func (*Queue) Close

func (q *Queue) Close()

Close Queue After close, Pop will return nil without block, and TryPop will return v=nil, ok=True

func (*Queue) IsClose

func (q *Queue) IsClose() bool

IsClose check is closed

func (*Queue) Len

func (q *Queue) Len() int

Len

func (*Queue) Pop

func (q *Queue) Pop() (v interface{})

Pop

func (*Queue) Push

func (q *Queue) Push(v interface{})

Push

func (*Queue) TryPop

func (q *Queue) TryPop() (v interface{}, ok bool)

TryPop

func (*Queue) TryPopTimeout

func (q *Queue) TryPopTimeout(tm time.Duration) (v interface{}, ok bool)

TryPopTimeout

func (*Queue) Wait

func (q *Queue) Wait()

Wait

Jump to

Keyboard shortcuts

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