Documentation
¶
Index ¶
Constants ¶
const ( // RegisterForTicksListeningWorkflowName is the name of the workflow to register // for ticks reception through a callback workflow. RegisterForTicksListeningWorkflowName = "RegisterForTicksListeningWorkflow" )
const (
// ServiceInfoWorkflowName is the name of the workflow to get the service info.
ServiceInfoWorkflowName = "ServiceInfoWorkflow"
)
const ( // UnregisterFromTicksListeningWorkflowName is the name of the workflow to register // for ticks reception through a callback workflow. UnregisterFromTicksListeningWorkflowName = "UnregisterFromTicksListeningWorkflow" )
const (
// WorkerTaskQueueName is the name of the task queue for the cryptellation worker.
WorkerTaskQueueName = "CryptellationticksTaskQueue"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ListenToTicksCallbackWorkflowParams ¶
ListenToTicksCallbackWorkflowParams is the parameters of the RegisterForTicksListening callback workflow.
type RegisterForTicksListeningWorkflowParams ¶
type RegisterForTicksListeningWorkflowParams struct {
RequesterID uuid.UUID
Exchange string
Pair string
Callback runtime.CallbackWorkflow
}
RegisterForTicksListeningWorkflowParams is the parameters of the RegisterForTicksListening workflow.
type RegisterForTicksListeningWorkflowResults ¶
type RegisterForTicksListeningWorkflowResults struct {
}
RegisterForTicksListeningWorkflowResults is the results of the RegisterForTicksListening workflow.
type ServiceInfoParams ¶
type ServiceInfoParams struct{}
ServiceInfoParams contains the parameters of the service info workflow.
type ServiceInfoResults ¶
type ServiceInfoResults struct {
Version string
}
ServiceInfoResults contains the result of the service info workflow.
type UnregisterFromTicksListeningWorkflowParams ¶
type UnregisterFromTicksListeningWorkflowParams struct {
RequesterID uuid.UUID
Exchange string
Pair string
}
UnregisterFromTicksListeningWorkflowParams is the parameters of the UnregisterFromTicksListening workflow.
type UnregisterFromTicksListeningWorkflowResults ¶
type UnregisterFromTicksListeningWorkflowResults struct{}
UnregisterFromTicksListeningWorkflowResults is the results of the UnregisterFromTicksListening workflow.