Java client for rotctrld daemon
- Add maven dependency:
<dependency>
<groupId>ru.r2cloud</groupId>
<artifactId>rotctrldClient</artifactId>
<version>1.1</version>
</dependency>
- Setup client and make a request:
RotctrldClient client = new RotctrldClient("127.0.0.1", port, 10000);
client.start();
Position position = client.getPosition();
client.stop();