blob: 2cbddd7275d4f126d944baf4bdfc159c349443f3 [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
2// TProcessor.cs
3//
4// Begin: Aug 19, 2007
David Reiss0c90f6f2008-02-06 22:18:40 +00005// Authors:
David Reiss7f42bcf2008-01-11 20:59:12 +00006// Todd Berman <tberman@imeem.com>
7//
8// Distributed under the Thrift Software License
9//
10// See accompanying file LICENSE or visit the Thrift site at:
11// http://developers.facebook.com/thrift/using
12
13using System;
14using System.Collections.Generic;
15using System.Text;
16using Thrift.Protocol;
17
18namespace Thrift
19{
20 public interface TProcessor
21 {
22 bool Process(TProtocol iprot, TProtocol oprot);
23 }
24}