Enum exar_server::ActionResult [] [src]

pub enum ActionResult {
    Connected,
    Published(u64),
    EventStream(EventStream),
}

A list specifying categories of connection handler action results.

Variants

Connected

The connection has been established.

Published(u64)

The event has been published with the given id.

EventStream(EventStream)

The subscription has been accepted and the event stream is available.