Esempio n. 1
0
 public loop Via(V reason = null, [P] S p = "", [M] S m = "", [L] int l = 0)
 => Lg.Forever(reason, p, m, l);
Esempio n. 2
0
 public static Active.Core.status status(this bool self,
                                         S reason = null)
 => self ? Active.Core.status._done : Active.Core.status._fail;
Esempio n. 3
0
 public failure Via(V reason = null,
                    [P] S p  = "", [M] S m = "", [L] int l = 0)
 => Lg.Failure(reason, p, m, l);
Esempio n. 4
0
 public static action done(V reason = null,
                           [P] S p  = "", [M] S m = "", [L] int l = 0)
 => Lg.Action(reason, p, m, l);
Esempio n. 5
0
 public action Via(V reason = null,
                   [P] S p  = "", [M] S m = "", [L] int l = 0)
 => Lg.Action(reason, p, m, l);
Esempio n. 6
0
 public impending Via
     (V reason = null, [P] S p = "", [M] S m = "", [L] int l = 0)
 => Lg.Impending(this, reason, p, m, l);
Esempio n. 7
0
 public status ViaDecorator(IDecorator scope, V reason = null)
 => log?Lg.ViaScope(this, scope, reason) : this;