comparison src/org/dancres/blitz/remote/nio/ResultProcessor.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.remote.nio;
2
3 import java.rmi.RemoteException;
4
5 /**
6 * An instance of this will receive a response as the result of a message
7 * sent via Txer. Txer will have been given an id for the message and
8 * the instance should be registered with Rxer prior to message transmission
9 * against the same id. When a response arrives for that id, the instance
10 * will have it's deliver method invoked with the raw payload (a byte[]).
11 */
12 public interface ResultProcessor {
13 void deliver(byte[] aPayload);
14 void deliver(RemoteException aT);
15 }