blob: 93a35774abd2af3925fc9c41576d5508f341e422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package test.Ice.threadPoolPriority;
import test.Ice.threadPoolPriority.Test._PriorityDisp;
public class PriorityI extends _PriorityDisp
{
public void shutdown(Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
}
public int getPriority(Ice.Current current)
{
return Thread.currentThread().getPriority();
}
}
|