package app

import "github.com/Diarkis/diarkis/dgs/app"

Index

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:

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:

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()!