blob: 7a8adf93f4258cecc3e4cd69e3131bee1c528919 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package JACE.tests.netsvcs.Time;
import JACE.netsvcs.Time.*;
import JACE.OS.*;
import JACE.Reactor.*;
public class TSClient
{
// Will run until killed since the default is to run the timer
// queue in its own thread.
public static void main (String args[])
{
ACE.enableDebugging ();
TSClerkProcessor cp = new TSClerkProcessor ();
if (cp.init (args) != 0)
return;
ACE.DEBUG ("***************************");
ACE.DEBUG ("Press enter to end the test");
ACE.DEBUG ("***************************");
try {
System.in.read();
cp.close ();
} catch (Exception e) {
ACE.ERROR (e);
}
}
}
|