blob: 08817eeeca23fcfdc861cf13ab6e8a71f2d74792 [file] [log] [blame]
package com.facebook.thrift;
import com.facebook.thrift.protocol.TProtocol;
/**
* 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(TProtocol in, TProtocol out)
throws TException;
}