-í
•Hê>c       s&     d  Z    d f  d „  ƒ  YZ d S(   s2   RPC stubs for interface exported by ClientStorage.s   ClientStoragec      sh    t  Z d  Z $ & d „  Z . d „  Z 1 d „  Z 4 d „  Z 7 d „  Z : d „  Z = d „  Z	 RS(   sa  An RPC stub class for the interface exported by ClientStorage.

    This is the interface presented by ClientStorage to the
    StorageServer; i.e. the StorageServer calls these methods and they
    are executed in the ClientStorage.

    See the ClientStorage class for documentation on these methods.

    It is currently important that all methods here are asynchronous
    (meaning they don't have a return value and the caller doesn't
    wait for them to complete), *and* that none of them cause any
    calls from the client to the storage.  This is due to limitations
    in the zrpc subpackage.

    The on-the-wire names of some of the methods don't match the
    Python method names.  That's because the on-the-wire protocol was
    fixed for ZEO 2 and we don't want to change it.  There are some
    aliases in ClientStorage.py to make up for this.
    c    s   & + , | |  _  d S(   sy   Constructor.

        The argument is a connection: an instance of the
        zrpc.connection.Connection class.
        N(   s   rpcs   self(   s   selfs   rpc(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   __init__& s   c    s   . / |  i i d ƒ d  S(   Ns   beginVerify(   s   selfs   rpcs	   callAsync(   s   self(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   beginVerify. s   c    s   1 2 |  i i d | ƒ d  S(   Ns   invalidateVerify(   s   selfs   rpcs	   callAsyncs   args(   s   selfs   args(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   invalidateVerify1 s   c    s   4 5 |  i i d ƒ d  S(   Ns	   endVerify(   s   selfs   rpcs	   callAsync(   s   self(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys	   endVerify4 s   c    s    7 8 |  i i d | | ƒ d  S(   Ns   invalidateTransaction(   s   selfs   rpcs   callAsyncNoPolls   tids   args(   s   selfs   tids   args(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   invalidateTransaction7 s   c    s   : ; |  i i d | ƒ d  S(   Ns	   serialnos(   s   selfs   rpcs	   callAsyncs   arg(   s   selfs   arg(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys	   serialnos: s   c    s   = > |  i i d | ƒ d  S(   Ns   info(   s   selfs   rpcs	   callAsyncs   arg(   s   selfs   arg(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   info= s   (
   s   __name__s
   __module__s   __doc__s   __init__s   beginVerifys   invalidateVerifys	   endVerifys   invalidateTransactions	   serialnoss   info(    (    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   ClientStorage s   N(   s   __doc__s   ClientStorage(   s   ClientStorage(    (    s6   /usr/pkg/lib/python2.2/site-packages/ZEO/ClientStub.pys   ? s   