blob: ecbc689c548ee43bb17332a2da9245b424e63868 (
plain) (
blame)
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
38
|
package thrift;
import org.apache.thrift.protocol.TBinaryProtocol;
import org.apache.thrift.protocol.TProtocol;
import org.apache.thrift.transport.TSocket;
import org.apache.thrift.transport.TTransport;
import org.apache.thrift.transport.TTransportException;
import thrift.ImageServer.Client;
public class MasterThriftConnection {
final TTransport transport = new TSocket("132.230.4.16", 9090);
public Client getMasterThriftConnection()
{
try {
transport.open();
} catch (TTransportException e) {
System.out.println("Keine Verbindung möglich!");
return null;
}
final TProtocol protocol = new TBinaryProtocol(transport);
final Client client = new Client(protocol);
System.out.println("Der Server läuft!");
return client;
}
public void closeMasterThriftConnection()
{
transport.close();
}
}
|