package app
import "github.com/Diarkis/diarkis/dgs/app"
Index
- func InstanceFinished()
- func SetOnInstanceRPC(cb func(b []byte) (ret []byte, err error)) bool
- func SetOnInstanceStart(cb func(b []byte) (ret []byte, err error)) bool
- func Setup() error
Functions
func InstanceFinished
func InstanceFinished()
InstanceFinished reset the allocation state of the Diarkis DGS node.
[IMPORTANT] DGS application MUST notify diarkis when the instance/session is done so that the internal state may be cleaned up.
func SetOnInstanceRPC
func SetOnInstanceRPC(cb func(b []byte) (ret []byte, err error)) bool
SetOnInstanceRPC register a callback function on DGS application RPC handle. Returns true if set successfully.
[IMPORTANT] This callback MUST be set BEFORE invoking Setup()!
Parameter:
- cb: Callback function to be invoked on DGS handle application RPC.
func SetOnInstanceStart
func SetOnInstanceStart(cb func(b []byte) (ret []byte, err error)) bool
SetOnInstanceStart register a callback function on DGS start. Returns true if set successfully.
[IMPORTANT] This callback MUST be set BEFORE invoking Setup()!
Parameter:
- cb: Callback function to be invoked on DGS start.
func Setup
func Setup() error
Setup set up the DGS Application package.
[IMPORTANT] You MUST set callbacks for SetOnInstanceStart() and SetOnInstanceRPC() must be set BEFORE invoking Setup()!