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