gpool

package
v1.4.5 Latest Latest
Warning

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

Go to latest
Published: Jan 11, 2024 License: BSD-3-Clause Imports: 0 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Job

type Job func()

Job is a function for doing jobs.

type Pool

type Pool struct {
	JobQueue    chan Job
	WorkerQueue chan *Worker
	// contains filtered or unexported fields
}

Pool is goroutine pool config.

func NewPool

func NewPool(numWorkers int, jobQueueLen int) *Pool

NewPool news goroutine pool

func (*Pool) Release

func (p *Pool) Release()

Release : release all workers

func (*Pool) Start

func (p *Pool) Start()

Start starts all workers

type Worker

type Worker struct {
	WorkerQueue chan *Worker
	JobChannel  chan Job
	Stop        chan struct{}
}

Worker goroutine struct.

func (*Worker) Start

func (w *Worker) Start()

Start : start goroutine pool.

Jump to

Keyboard shortcuts

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