Skip to content

dernasherbrezon/rotctrldClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About Build Status Quality Gate Status

Java client for rotctrld daemon

Usage

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