private IAsyncResult RemoteAsyncCallAdd(Node node, ITuple tuple) { AsyncAddDelegate RemoteDel = new AsyncAddDelegate(node.AddS); IAsyncResult RemAr = RemoteDel.BeginInvoke(tuple, RemoteAsyncCallBackAdd, null); return(RemAr); }
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); }
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(); }