Categorygithub.com/tokenized/threads
modulepackage
0.1.2
Repository: https://github.com/tokenized/threads.git
Documentation: pkg.go.dev

# README

Threads

Threads supports multi-threaded operations in golang.

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

ErrCombined is used to combine multiple errors when more than one thread had issues.
Interrupted means the function was interrupted by the interrupt channel and the function did not finish.

# Structs

InterruptableThread is a thread that is stopped by closing an "interrupt" channel.
PeriodicThread is a thread that calls a function periodically.
No description provided by the author
UninterruptableThread thread is a thread that is stopped by external means like closing a channel or connection.
WaitingBuffer is a buffer that can be written to from one thread and read from another thread.
WriteCounter counts the number of bytes written to it.

# Interfaces

No description provided by the author
No description provided by the author

# Type aliases

InterruptableFunction is a function that returns when an "interrupt" channel is closed.
No description provided by the author
No description provided by the author
UninterruptableFunction is a function that can be stopped by external means like closing a channel or connection.