Changeset 338

Show
Ignore:
Timestamp:
04/02/08 19:48:37 (8 months ago)
Author:
jake
Message:

change namespaces in thrift files

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/thrudex/src/Thrudex.thrift

    r323 r338  
    1 cpp_namespace thrudex 
     1namespace cpp thrudex 
     2namespace java thrudex 
    23php_namespace Thrudex 
    34ruby_namespace Thrudex 
    45perl_package  Thrudex 
    5 java_package  thrudex 
     6 
    67 
    78 
  • trunk/thrudoc/src/Thrudoc.thrift

    r207 r338  
    1 cpp_namespace thrudoc 
     1namespace cpp thrudoc 
    22php_namespace Thrudoc 
    33perl_package  Thrudoc 
    4 java_package  thrudoc 
     4namespace java thrudoc 
     5ruby_namespace Thrudoc 
     6 
     7enum ExceptionType { 
     8     UNKNOWN     = 1, 
     9     NO_SUCH_KEY = 2 
     10} 
    511 
    612exception ThrudocException 
    713{ 
    8     1: string what 
     14    1: string        what 
     15    2: ExceptionType type = UNKNOWN 
    916} 
    1017 
     
    3037service Thrudoc 
    3138{ 
    32     list<string> getBuckets ()                                                              throws(ThrudocException e), 
     39    list<string> getBuckets ()                                        throws(ThrudocException e), 
    3340 
    3441    void         put(1:string bucket, 2:string key, 3:string value)   throws(ThrudocException e), 
  • trunk/thruqueue/src/Thruqueue.thrift

    r207 r338  
    1 cpp_namespace thruqueue 
     1namespace cpp thruqueue 
     2namespace java thruqueue 
    23php_namespace Thruqueue 
    34perl_package  Thruqueue 
    4 java_package  thruqueue 
     5 
    56 
    67exception ThruqueueException