diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-03-06 10:13:42 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-03-06 10:13:42 +0100 |
commit | c6dbd090d9691cc0116a2967b2827b858b184dfe (patch) | |
tree | 6d2ad80c98665c9090b16f97c400ab4b33c7ab73 /cpp/src/Ice/Transceiver.h | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.tar.bz2 ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.tar.xz ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.zip |
Removed thread-per-connection and added serialize mode
Diffstat (limited to 'cpp/src/Ice/Transceiver.h')
-rw-r--r-- | cpp/src/Ice/Transceiver.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cpp/src/Ice/Transceiver.h b/cpp/src/Ice/Transceiver.h index 24edd6d4c1e..a0b1f40edf8 100644 --- a/cpp/src/Ice/Transceiver.h +++ b/cpp/src/Ice/Transceiver.h @@ -12,7 +12,7 @@ #include <IceUtil/Shared.h> #include <Ice/TransceiverF.h> -#include <Ice/Selector.h> +#include <Ice/SelectorF.h> #ifdef _WIN32 # include <winsock2.h> @@ -32,13 +32,11 @@ public: virtual SOCKET fd() = 0; virtual void close() = 0; - virtual void shutdownWrite() = 0; - virtual void shutdownReadWrite() = 0; - virtual bool write(Buffer&, int) = 0; - virtual bool read(Buffer&, int) = 0; + virtual bool write(Buffer&) = 0; + virtual bool read(Buffer&) = 0; virtual std::string type() const = 0; virtual std::string toString() const = 0; - virtual SocketStatus initialize(int) = 0; + virtual SocketStatus initialize() = 0; virtual void checkSendSize(const Buffer&, size_t) = 0; }; |