Subversion Repositories SmartDukaan

Rev

Rev 504 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 504 Rev 766
Line 30... Line 30...
30
        self.protocol = TBinaryProtocol(self.transport)    
30
        self.protocol = TBinaryProtocol(self.transport)    
31
        self.client = UserContextService.Client(self.protocol)
31
        self.client = UserContextService.Client(self.protocol)
32
        self.transport.open()
32
        self.transport.open()
33
        
33
        
34
    def get_client(self):
34
    def get_client(self):
35
        return self.client
-
 
36
35
        return self.client
-
 
36
    
-
 
37
    def close_connection(self):
-
 
38
        self.transport.close()
-
 
39
37
40