Documentation ¶
Index ¶
Constants ¶
View Source
const ( MessageHealthCheck = "MsgHealthCheck" MessageExecute = "MsgExecute" MessageExecuteResult = "MsgExecuteResult" MessageExecuteError = "MsgExecuteError" MessageExecuteTimeout = "MsgExecuteTimeout" MessageExecuteUnknown = "MsgExecuteUnknown" MessageExecuteInvalid = "MsgExecuteInvalid" MessageExecuteNotFound = "MsgExecuteNotFound" MessageExecuteNotSupported = "MsgExecuteNotSupported" MessageExecuteNotImplemented = "MsgExecuteNotImplemented" MessageExecuteNotAuthorized = "MsgExecuteNotAuthorized" MessageExecuteNotPermitted = "MsgExecuteNotPermitted" MessageExecuteNotAvailable = "MsgExecuteNotAvailable" MessageExecuteNotReady = "MsgExecuteNotReady" MessageExecuteNotConnected = "MsgExecuteNotConnected" MessageExecuteNotInitialized = "MsgExecuteNotInitialized" MessageExecuteNotConfigured = "MsgExecuteNotConfigured" MessageExecuteNotInstalled = "MsgExecuteNotInstalled" MessageExecuteNotUpgraded = "MsgExecuteNotUpgraded" MessageRollCall = "MsgRollCall" MessageRollCallResponse = "MsgRollCallResponse" MessageExecuteResponse = "MsgExecuteResponse" MessageInstallFunction = "MsgInstallFunction" MessageInstallFunctionResponse = "MsgInstallFunctionResponse" MessageFormCluster = "MsgFormCluster" MessageFormClusterResponse = "MsgFormClusterResponse" MessageDisbandCluster = "MsgDisbandCluster" )
Message types in the Blockless protocol.
View Source
const ( HeadNodeLabel = "head" WorkerNodeLabel = "worker" )
The following are labels for the node roles, used when parsing the node role as a string.
View Source
const (
ProtocolID protocol.ID = "/b7s/work/1.0.0"
)
Variables ¶
View Source
var ( ErrNotFound = errors.New("not found") ErrRollCallTimeout = errors.New("roll call timed out - not enough nodes responded") ErrExecutionNotEnoughNodes = errors.New("not enough execution results received") )
Sentinel errors.
Functions ¶
func PeerIDsToStr ¶ added in v0.3.0
PeerIDsToStr will convert a list of peer.IDs to strings.
func RuntimeCLI ¶
func RuntimeCLI() string
RuntimeCLI returns the name of the Blockless Runtime executable.
Types ¶
type Deployment ¶
type Deployment struct { CID string `json:"cid,omitempty"` Checksum string `json:"checksum,omitempty"` URI string `json:"uri,omitempty"` Methods []Methods `json:"methods,omitempty"` Aggregation string `json:"aggregation,omitempty"` Nodes int `json:"nodes,omitempty"` File string `json:"file,omitempty"` }
type Function ¶
type Function struct { ID string `json:"id,omitempty"` Name string `json:"name,omitempty"` Version string `json:"version,omitempty"` Runtime string `json:"runtime,omitempty"` Extensions []string `json:"extensions,omitempty"` }
Function represents a Blockless function that can be executed.
type FunctionManifest ¶
type FunctionManifest struct { ID string `json:"id,omitempty"` Name string `json:"name,omitempty"` Description string `json:"description,omitempty"` Function Function `json:"function,omitempty"` Deployment Deployment `json:"deployment,omitempty"` Runtime Runtime `json:"runtime,omitempty"` Cached bool `json:"cached,omitempty"` Hooks []interface{} `json:"hooks,omitempty"` FSRootPath string `json:"fs_root_path,omitempty"` Entry string `json:"entry,omitempty"` ContentType string `json:"contentType,omitempty"` Permissions []string `json:"permissions,omitempty"` DriversRootPath string `json:"drivers_root_path,omitempty"` LimitedFuel uint `json:"limited_fuel,omitempty"` LimitedMemory uint `json:"limited_memory,omitempty"` }
FunctionManifest describes some important configuration options for a Blockless function.
type NodeRole ¶
type NodeRole uint8
NodeRole is a representation of the node's role.
Click to show internal directories.
Click to hide internal directories.