1 // **********************************************************************
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
8 // **********************************************************************
12 public class HelloI
extends _HelloDisp
15 sayHello(int delay
, Ice
.Current current
)
21 Thread
.currentThread().sleep(delay
);
23 catch(InterruptedException ex1
)
27 System
.out
.println("Hello World!");
31 shutdown(Ice
.Current current
)
33 System
.out
.println("Shutting down...");
34 current
.adapter
.getCommunicator().shutdown();