diff options
Diffstat (limited to 'java/test/Ice/udp/TestIntfI.java')
-rw-r--r-- | java/test/Ice/udp/TestIntfI.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/test/Ice/udp/TestIntfI.java b/java/test/Ice/udp/TestIntfI.java index 8a3d3887767..585d00be077 100644 --- a/java/test/Ice/udp/TestIntfI.java +++ b/java/test/Ice/udp/TestIntfI.java @@ -21,6 +21,18 @@ public final class TestIntfI extends Test._TestIntfDisp } } + public void sendByteSeq(byte[] seq, Test.PingReplyPrx reply, Ice.Current current) + { + try + { + reply.reply(); + } + catch(Ice.LocalException ex) + { + assert(false); + } + } + public void shutdown(Ice.Current current) { current.adapter.getCommunicator().shutdown(); |