view src/org/dancres/blitz/remote/nio/ResultProcessor.java @ 34:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +0100
parents 3dc0c5604566
children
line wrap: on
line source

package org.dancres.blitz.remote.nio;

import java.rmi.RemoteException;

/**
 * An instance of this will receive a response as the result of a message
 * sent via Txer.  Txer will have been given an id for the message and
 * the instance should be registered with Rxer prior to message transmission
 * against the same id.  When a response arrives for that id, the instance
 * will have it's deliver method invoked with the raw payload (a byte[]).
 */
public interface ResultProcessor {
    void deliver(byte[] aPayload);
    void deliver(RemoteException aT);
}