commit | dc815f5402deeaa6ddd25c536bf912be59438d57 | [log] [tgz] |
---|---|---|
author | David Reiss <dreiss@apache.org> | Sun Mar 02 00:58:04 2008 +0000 |
committer | David Reiss <dreiss@apache.org> | Sun Mar 02 00:58:04 2008 +0000 |
tree | 237f0c25195bba46d7825761038af773c3b88ee5 | |
parent | 907ad76c2db1ae834ea8d09a0aca86da008c261f [diff] [blame] |
Add Stop methods for C# servers. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665538 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/csharp/src/Server/TServer.cs b/lib/csharp/src/Server/TServer.cs index b168d99..a9b2816 100644 --- a/lib/csharp/src/Server/TServer.cs +++ b/lib/csharp/src/Server/TServer.cs
@@ -103,6 +103,8 @@ * The run method fires up the server and gets things going. */ public abstract void Serve(); + + public abstract void Stop(); } }