diff options
Diffstat (limited to 'java/src/IceInternal/ProxyBatchOutgoingAsync.java')
-rw-r--r-- | java/src/IceInternal/ProxyBatchOutgoingAsync.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/java/src/IceInternal/ProxyBatchOutgoingAsync.java b/java/src/IceInternal/ProxyBatchOutgoingAsync.java new file mode 100644 index 00000000000..c6f7efdbe5b --- /dev/null +++ b/java/src/IceInternal/ProxyBatchOutgoingAsync.java @@ -0,0 +1,26 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2009 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. +// +// ********************************************************************** + +package IceInternal; + +public class ProxyBatchOutgoingAsync extends BatchOutgoingAsync +{ + public ProxyBatchOutgoingAsync(Ice.ObjectPrx prx, String operation, CallbackBase callback) + { + super(((Ice.ObjectPrxHelperBase)prx).__reference().getInstance(), operation, callback); + _proxy = prx; + } + + public Ice.ObjectPrx getProxy() + { + return _proxy; + } + + private Ice.ObjectPrx _proxy; +} |