summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Endpoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src/IceE/Endpoint.h')
-rw-r--r--cppe/src/IceE/Endpoint.h117
1 files changed, 0 insertions, 117 deletions
diff --git a/cppe/src/IceE/Endpoint.h b/cppe/src/IceE/Endpoint.h
deleted file mode 100644
index 1026c1d0cd4..00000000000
--- a/cppe/src/IceE/Endpoint.h
+++ /dev/null
@@ -1,117 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice-E is licensed to you under the terms described in the
-// ICEE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef ICEE_ENDPOINT_H
-#define ICEE_ENDPOINT_H
-
-#include <IceE/EndpointF.h>
-#include <IceE/ConnectorF.h>
-#include <IceE/TransceiverF.h>
-#include <IceE/InstanceF.h>
-
-#ifndef ICEE_PURE_CLIENT
-# include <IceE/AcceptorF.h>
-#endif
-
-#include <IceE/Shared.h>
-
-namespace IceInternal
-{
-
-class BasicStream;
-
-class Endpoint : public IceUtil::Shared
-{
-public:
-
- //
- // Marshal the endpoint.
- //
- virtual void streamWrite(BasicStream*) const = 0;
-
- //
- // Convert the endpoint to its string form.
- //
- virtual std::string toString() const = 0;
-
- //
- // Return the endpoint type.
- //
- virtual Ice::Short type() const = 0;
-
- //
- // Return the timeout for the endpoint in milliseconds. 0 means
- // non-blocking, -1 means no timeout.
- //
- virtual Ice::Int timeout() const = 0;
-
- //
- // Return a new endpoint with a different timeout value, provided
- // that timeouts are supported by the endpoint. Otherwise the same
- // endpoint is returned.
- //
- virtual EndpointPtr timeout(Ice::Int) const = 0;
-
- //
- // Return true if the endpoint is datagram-based.
- //
- virtual bool datagram() const = 0;
-
- //
- // Return true if the endpoint is secure.
- //
- virtual bool secure() const = 0;
-
- //
- // Return true if the endpoint type is unknown.
- //
- virtual bool unknown() const = 0;
-
- //
- // Return a connector for this endpoint, or null if no connector
- // is available.
- //
- virtual ConnectorPtr connector() const = 0;
-
- //
- // Return an acceptor for this endpoint, or null if no acceptors
- // is available. In case an acceptor is created, this operation
- // also returns a new "effective" endpoint, which might differ
- // from this endpoint, for example, if a dynamic port number is
- // assigned.
- //
-#ifndef ICEE_PURE_CLIENT
- virtual AcceptorPtr acceptor(EndpointPtr&) const = 0;
-#endif
-
- //
- // Expand endpoint out in to separate endpoints for each local
- // host if endpoint was configured with no host set.
- //
- virtual std::vector<EndpointPtr> expand(bool) const = 0;
-
- //
- // Return whether the endpoint should be published in proxies
- // created by the Object Adapter.
- //
-#ifndef ICEE_PURE_CLIENT
- virtual bool publish() const = 0;
-#endif
-
- //
- // Compare endpoints for sorting purposes.
- //
- virtual bool operator==(const Endpoint&) const = 0;
- virtual bool operator!=(const Endpoint&) const = 0;
- virtual bool operator<(const Endpoint&) const = 0;
-};
-
-}
-
-#endif