// ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_BATCH_REQUEST_INTERCEPTOR_H #define ICE_BATCH_REQUEST_INTERCEPTOR_H #include #include #include namespace Ice { class BatchRequest { public: virtual ~BatchRequest() { } virtual void enqueue() const = 0; virtual int getSize() const = 0; virtual const std::string& getOperation() const = 0; virtual const Ice::ObjectPrxPtr& getProxy() const = 0; }; class BatchRequestInterceptor : public ICE_SHARED { public: virtual void enqueue(const BatchRequest&, int, int) = 0; }; ICE_DEFINE_PTR(BatchRequestInterceptorPtr, BatchRequestInterceptor); }; #endif