runtime

package
v0.0.19 Latest Latest
Warning

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

Go to latest
Published: Aug 6, 2023 License: GPL-3.0 Imports: 12 Imported by: 29

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrHttpMissingServer  = errors.New("http runtime no server provided")
	ErrHttpMissingHandler = errors.New("http runtime no handler provided")
)

Errors

View Source
var (
	ErrLoopRuntimeNoLoop     = errors.New("functional runtime no loop function provided")
	ErrLoopRuntimeInitialise = errors.New("functional runtime initialise function failed")
)

Errors

View Source
var (
	ErrPrimaryInitialiseError = errors.New("primary runtime initialise function failed")
	ErrPrimaryTesting         = errors.New("primary runtime testing error")
)

Errors

View Source
var (
	ErrRunnerRuntimeNoRunnable    = errors.New("runner runtime no runnable provided")
	ErrRunnerRuntimeRunnableStart = errors.New("runner runtime runnable failed to start")
)

Errors

Functions

func Error added in v0.0.6

func Error(err error)

func Start added in v0.0.6

func Start(runtimes []Runtime, sleepTime time.Duration) error

func Stop added in v0.0.6

func Stop()

func Wait added in v0.0.6

func Wait()

Types

type Configuration

type Configuration[R any] func(R) R

func HttpWithHandler

func HttpWithHandler(handler http.Handler) Configuration[*HttpRunnable]

configuration

func HttpWithPort

func HttpWithPort(port int) Configuration[*HttpRunnable]

func HttpWithReadHeaderTimeout

func HttpWithReadHeaderTimeout(timeout time.Duration) Configuration[*HttpRunnable]

func HttpWithReadTimeout

func HttpWithReadTimeout(timeout time.Duration) Configuration[*HttpRunnable]

func HttpWithWriteTimeout

func HttpWithWriteTimeout(timeout time.Duration) Configuration[*HttpRunnable]

type Constructor added in v0.0.19

type Constructor[R any, I any] func(...Configuration[R]) I

type ContextKey added in v0.0.7

type ContextKey struct {
	Name string
}

func Context added in v0.0.7

func Context(name string) ContextKey

type HttpRunnable added in v0.0.6

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

implementation

func HttpDefault

func HttpDefault(c *HttpRunnable) *HttpRunnable

default

func (*HttpRunnable) Run added in v0.0.6

func (c *HttpRunnable) Run() error

func (*HttpRunnable) Start added in v0.0.6

func (c *HttpRunnable) Start() error

func (*HttpRunnable) Stop added in v0.0.6

func (c *HttpRunnable) Stop()

type Loop added in v0.0.6

type Loop interface {
	Start() error
	Stop()
	Loop(context.Context, context.CancelFunc) error
}

type LoopRunnable added in v0.0.6

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

implementation

func (*LoopRunnable) Run added in v0.0.6

func (r *LoopRunnable) Run() error

func (*LoopRunnable) Start added in v0.0.6

func (r *LoopRunnable) Start() error

func (*LoopRunnable) Stop added in v0.0.6

func (r *LoopRunnable) Stop()

type Primary

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

implementation

func (*Primary) Error

func (r *Primary) Error()

func (*Primary) Interrupt

func (r *Primary) Interrupt()

func (*Primary) Start

func (r *Primary) Start() error

func (*Primary) Stop

func (r *Primary) Stop()

func (*Primary) StopFrom

func (r *Primary) StopFrom(from int)

func (*Primary) Wait added in v0.0.6

func (r *Primary) Wait()

type Runnable added in v0.0.6

type Runnable interface {
	Start() error
	Stop()
	Run() error
}

type Runner added in v0.0.6

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

func (*Runner) Run added in v0.0.6

func (r *Runner) Run()

func (*Runner) Start added in v0.0.6

func (r *Runner) Start() error

func (*Runner) Stop added in v0.0.6

func (r *Runner) Stop()

type Runtime

type Runtime interface {
	Start() error
	Stop()
}

func NewHttp

func NewHttp(configurations ...Configuration[*HttpRunnable]) Runtime

constructor

func NewLoop added in v0.0.6

func NewLoop(loop Loop) Runtime

constructor

func NewRunner added in v0.0.6

func NewRunner(runnable Runnable) Runtime

Jump to

Keyboard shortcuts

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