1 31 package org.objectweb.proactive.core.body.reply; 32 33 import org.objectweb.proactive.Body; 34 import org.objectweb.proactive.core.body.future.FuturePool; 35 36 37 public class ReplyReceiverImpl implements ReplyReceiver, java.io.Serializable { 38 39 public ReplyReceiverImpl() { 40 } 41 42 public void receiveReply(Reply r, Body receiverBody, FuturePool futurePool) throws java.io.IOException { 43 futurePool.receiveFutureValue(r.getSequenceNumber(), r.getSourceBodyID(), r.getResult()); 44 } 45 } 46 | Popular Tags |