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; }
public InvokeData(FluorineContext context, IServiceCall call, byte channel) { _context = context; _call = call; _channel = channel; }
public PushData(FluorineContext context, ICollection subscribers, IMessage message) { _context = context; _subscribers = subscribers; _message = message; }