Exemplo n.º 1
0
 public void DirectTo <T>(ITerminalResource <T> t, IEnumerable <Condition <T> > a = null) where T : class, ITerminal =>
 ActionQueue.Enqueue(() => ToQueueFor.DirectTo(t, a));
Exemplo n.º 2
0
 public void Disconnect(string message) => ActionQueue.Enqueue(() => ToQueueFor.Disconnect(message));
Exemplo n.º 3
0
 public void StreamResult(ISerializedResult r, int m, TimeSpan?t = null, bool w = false, bool d = true) =>
 ActionQueue.Enqueue(() => ToQueueFor.StreamResult(r, m, t, w, d));
Exemplo n.º 4
0
 public void DirectToShell(IEnumerable <Condition <Shell> > a = null) => ActionQueue.Enqueue(() => ToQueueFor.DirectToShell(a));
Exemplo n.º 5
0
 public void SendException(Exception exception) => ActionQueue.Enqueue(() => ToQueueFor.SendException(exception));
Exemplo n.º 6
0
 public void SendResult(IResult r, TimeSpan?t = null, bool w = false, bool d = true) =>
 ActionQueue.Enqueue(() => ToQueueFor.SendResult(r, t, w, d));
Exemplo n.º 7
0
 public void SendJson(object i, bool a = false, bool?p = null, bool ig = false) => ActionQueue.Enqueue(() => ToQueueFor.SendJson(i, a, p, ig));
Exemplo n.º 8
0
 public void SendBinary(byte[] d, int o, int l) => ActionQueue.Enqueue(() => ToQueueFor.SendBinary(d, o, l));
Exemplo n.º 9
0
 public void SendText(string d) => ActionQueue.Enqueue(() => ToQueueFor.SendText(d));
Exemplo n.º 10
0
 public void SendTextRaw(string text) => ActionQueue.Enqueue(() => ToQueueFor.SendTextRaw(text));
Exemplo n.º 11
0
 /// <inheritdoc />
 public void SetStatus(WebSocketStatus status) => ActionQueue.Enqueue(() => ToQueueFor.SetStatus(status));