Ejemplo n.º 1
0
        private IAsyncResult RemoteAsyncCallAdd(Node node, ITuple tuple)
        {
            AsyncAddDelegate RemoteDel = new AsyncAddDelegate(node.AddS);
            IAsyncResult     RemAr     = RemoteDel.BeginInvoke(tuple, RemoteAsyncCallBackAdd, null);

            return(RemAr);
        }
Ejemplo n.º 2
0
        private IAsyncResult RemoteAsyncCallAdd(TupleSpace space, ITuple tuple, string id, int seq)
        {
            AsyncAddDelegate RemoteDel = new AsyncAddDelegate(space.Add);
            IAsyncResult     RemAr     = RemoteDel.BeginInvoke(tuple, id, seq, RemoteAsyncCallBackAdd, null);

            return(RemAr);
        }
Ejemplo n.º 3
0
        private IAsyncResult RemoteAsyncCallAdd(Node node, ITuple tuple)
        {
            AsyncAddDelegate RemoteDel = new AsyncAddDelegate(node.AddS);
            IAsyncResult     RemAr     = RemoteDel.BeginInvoke(tuple, RemoteAsyncCallBackAdd, null);

            return(RemAr);
            //throw new NotImplementedException();
        }