#include <ConnectionCache.h>

Public Member Functions | |
| ConnectionKey () | |
| virtual | ~ConnectionKey () |
| bool | operator== (const ConnectionKey &key) const |
| bool | operator!= (const ConnectionKey &key) const |
| virtual u_long | hash () const =0 |
| virtual ConnectionKey * | duplicate () const =0 |
Protected Member Functions | |
| virtual bool | equal (const ConnectionKey &key) const =0 |
Definition at line 27 of file ConnectionCache.h.
| ACE::INet::ConnectionKey::ConnectionKey | ( | ) |
Definition at line 20 of file ConnectionCache.cpp.
{}
| ACE::INet::ConnectionKey::~ConnectionKey | ( | ) | [virtual] |
Definition at line 23 of file ConnectionCache.cpp.
{}
| virtual ConnectionKey* ACE::INet::ConnectionKey::duplicate | ( | ) | const [pure virtual] |
Implemented in ACE::INet::ClientINetRequestHandler::INetConnectionKey.
| virtual bool ACE::INet::ConnectionKey::equal | ( | const ConnectionKey & | key | ) | const [protected, pure virtual] |
Implemented in ACE::INet::ClientINetRequestHandler::INetConnectionKey.
| virtual u_long ACE::INet::ConnectionKey::hash | ( | ) | const [pure virtual] |
Implemented in ACE::INet::ClientINetRequestHandler::INetConnectionKey.
| bool ACE::INet::ConnectionKey::operator!= | ( | const ConnectionKey & | key | ) | const [inline] |
Definition at line 19 of file ConnectionCache.inl.
{
return !this->equal (key);
}
| bool ACE::INet::ConnectionKey::operator== | ( | const ConnectionKey & | key | ) | const [inline] |
Definition at line 13 of file ConnectionCache.inl.
{
return this->equal (key);
}
1.7.0