You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by Apache Wiki <wi...@apache.org> on 2009/09/02 05:24:24 UTC

[Thrift Wiki] Update of "FAQ" by RobSlifka

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Thrift Wiki" for change notification.

The following page has been changed by RobSlifka:
http://wiki.apache.org/thrift/FAQ

------------------------------------------------------------------------------
  ===== Can I overload service methods? =====
  Nope.  Method names must be unique.
  
+ ===== I'm throwing a TException in my server, why is the client complaining? =====
+ Think of TExceptions as runtime exceptions for your Thrift server.  They are uncaught (not unchecked!) exceptions that rise to your server's main loop and terminate the current Thrift call.  If your application uses exceptions, you must create exceptions in your IDL. See the [http://wiki.apache.org/thrift/Tutorial Tutorial] for more information on how to create exceptions.
+