blob: dd6ae858341ad7e706a358f9e7ed2a80dbebf7b5 [file] [log] [blame]
package com.facebook.thrift;
import com.facebook.thrift.transport.TTransport;
/**
* A processor is a generic object which operates upon an input stream and
* writes to some output stream.
*
* @author Mark Slee <mcslee@facebook.com>
*/
public interface TProcessor {
public boolean process(TTransport in, TTransport out)
throws TException;
}