示例#1
0
 public InvokeData(FluorineContext context, IServiceCall call, byte channel)
 {
     _context = context;
     _call = call;
     _channel = channel;
 }
示例#2
0
 public PushData(FluorineContext context, ICollection subscribers, IMessage message)
 {
     _context = context;
     _subscribers = subscribers;
     _message = message;
 }
示例#3
0
 public InvokeData(FluorineContext context, string method, object[] arguments, IPendingServiceCallback callback, bool ignoreSelf, IScope targetScope)
 {
     _context = context;
     _method = method;
     _arguments = arguments;
     _callback = callback;
     _ignoreSelf = ignoreSelf;
     _targetScope = targetScope;
 }