blob: dd6ae858341ad7e706a358f9e7ed2a80dbebf7b5 [file] [log] [blame]
Mark Slee83c52a82006-06-07 06:51:18 +00001package com.facebook.thrift;
2
3import com.facebook.thrift.transport.TTransport;
4
5/**
6 * A processor is a generic object which operates upon an input stream and
7 * writes to some output stream.
8 *
9 * @author Mark Slee <mcslee@facebook.com>
10 */
11public interface TProcessor {
12 public boolean process(TTransport in, TTransport out)
13 throws TException;
14}