blob: 679e3f6920080719cd39e02ffce1e2b858ba49a7 [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;
David Reiss7f42bcf2008-01-11 20:59:12 +000014using Thrift.Protocol;
15
16namespace Thrift
17{
18 public interface TProcessor
19 {
20 bool Process(TProtocol iprot, TProtocol oprot);
21 }
22}