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