evidencemetadata

package
v0.0.0-...-82cc56b Latest Latest
Warning

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

Go to latest
Published: May 13, 2024 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Status

type Status string
const (
	// StatusQueued reflects the state where a worker has received the task, but decided it could not process immediately.
	StatusQueued Status = "Queued"
	// StatusProcessing reflects the state where a task has been given to the worker, but the worker hasn't responded with the result yet.
	StatusProcessing Status = "Processing"
	// StatusCompleted reflects a work-done scenario where the processing succeeded
	// (note: this does not mean that we have data -- just that no error occurred.)
	StatusCompleted Status = "Completed"
	// StatusCompleted reflects a work-done scenario where the processing failed, and an error was returned
	StatusError Status = "Error"
)

func (Status) Ptr

func (v Status) Ptr() *Status

func (Status) String

func (v Status) String() string

Jump to

Keyboard shortcuts

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