
io.relayr.java.api.CloudApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for connecting to the Relayr Cloud
The newest version!
package io.relayr.java.api;
import java.util.List;
import io.relayr.java.model.LogEvent;
import io.relayr.java.model.Status;
import retrofit.http.Body;
import retrofit.http.GET;
import retrofit.http.POST;
import rx.Observable;
public interface CloudApi {
@Deprecated @POST("/client/log") Observable logMessage(@Body List events);
/**
* Checks whether server is up
* @return an {@link Observable} with String status of the server
*/
@GET("/server-status") Observable getServerStatus();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy