The app runner. This is where the magic happens.
Beispiel #1
0
 public static void AddPipe(ManosPipe pipe)
 {
     AppHost.AddPipe(pipe);
 }
Beispiel #2
0
 public static void Synchronize(this IManosContext context,
                                Action <IManosContext, object> action, object arg)
 {
     AppHost.Synchronize(action, context, arg);
 }
Beispiel #3
0
 public static Timeout AddTimeout(TimeSpan timespan, IRepeatBehavior repeat, object data, TimeoutCallback callback)
 {
     return(AppHost.AddTimeout(timespan, repeat, data, callback));
 }
Beispiel #4
0
 public static void Synchronize <T> (this IManosContext context,
                                     Action <IManosContext, T> action, T arg)
 {
     AppHost.Synchronize(action, context, arg);
 }