workers

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: May 29, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Worker

type Worker[T any] struct {
	// contains filtered or unexported fields
}

Worker applies generics to the Worker struct, making it type-specific.

func New

func New[T any](ctx context.Context, opts *options.Subscriber) (*Worker[T], error)

New is now a generic function that returns an instance of a type-specific Worker.

func (*Worker[T]) Start

func (w *Worker[T]) Start(workerFn WorkerFn[T], descriptor <-chan T) error

Start accepts a WorkerFn that is specific to the type T.

func (*Worker[T]) Stop

func (w *Worker[T]) Stop() error

Stop provides functionality to stop the worker's operations.

type WorkerFn

type WorkerFn[T any] func(descriptor T) error

WorkerFn defines WorkerFn as a generic type with a type parameter T.

Jump to

Keyboard shortcuts

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