SubscriptionPayload

The package which is published over the subscription socket

@safe
@recordType("sub_payload")
struct SubscriptionPayload {
@label("topic")
string topic_name;
@label("task")
string task_name;
@label("symbol")
string symbol_name;
@label("data")
Document data;
}

Mixed In Members

From mixin HiBONRecord!(q{ this(LogInfo info, const(Document) data) { this.topic_name = info.topic_name; this.task_name = info.task_name; this.symbol_name = info.symbol_name; this.data = data; } })

_keys
string[] _keys()