Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.relayr.api; /* w w w . j a v a 2 s . c o m*/ import java.util.List; import io.relayr.model.LogEvent; import retrofit.http.Body; import retrofit.http.POST; import rx.Observable; public interface CloudApi { @POST("/client/log") public Observable<Void> logMessage(@Body List<LogEvent> events); }