Impala
Impalaistheopensource,nativeanalyticdatabaseforApacheHadoop.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
impala::ThriftServer::ConnectionHandlerIf Class Referenceabstract

Interface class for receiving connection creation / termination events. More...

#include <thrift-server.h>

Inheritance diagram for impala::ThriftServer::ConnectionHandlerIf:
Collaboration diagram for impala::ThriftServer::ConnectionHandlerIf:

Public Member Functions

virtual void ConnectionStart (const ConnectionContext &connection_context)=0
 Called when a connection is established (when a client connects). More...
 
virtual void ConnectionEnd (const ConnectionContext &connection_context)=0
 

Detailed Description

Interface class for receiving connection creation / termination events.

Definition at line 53 of file thrift-server.h.

Member Function Documentation

virtual void impala::ThriftServer::ConnectionHandlerIf::ConnectionEnd ( const ConnectionContext connection_context)
pure virtual

Called when a connection is terminated (when a client closes the connection). After this callback returns, the memory connection_context references is no longer valid and clients must not refer to it again.

Implemented in impala::ImpalaServer.

virtual void impala::ThriftServer::ConnectionHandlerIf::ConnectionStart ( const ConnectionContext connection_context)
pure virtual

Called when a connection is established (when a client connects).

Implemented in impala::ImpalaServer.


The documentation for this class was generated from the following file: