Skip to content

Commit

Permalink
new context-free continuation
Browse files Browse the repository at this point in the history
  • Loading branch information
laforge49 committed Dec 11, 2012
1 parent 185e41f commit fb132ac
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public Continuation(TargetActor targetActor, RP _rp) {
public void response(Object rsp) throws Exception {
(new ContinuationRequest(_rp, rsp)).sendEvent(targetActor);
}

public void response(JLPCActor currentActor, Object rsp) throws Exception {
(new ContinuationRequest(_rp, rsp)).sendEvent(currentActor, targetActor);
}
}

class ContinuationRequest extends Request<Object, TargetActor> {
Expand Down

0 comments on commit fb132ac

Please sign in to comment.