io.keen.client.java.KeenNetworkStatusHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keen-client-java-core Show documentation
Show all versions of keen-client-java-core Show documentation
Java Client Core Library for Keen
The newest version!
package io.keen.client.java;
/**
* This interface holds methods for checking network conditions.
*
* @author Simon Murtha Smith
* @since 2.1.0
*/
public interface KeenNetworkStatusHandler {
/**
* Reports on whether there is a network connection
*
* @return The object which was read, held in a {@code Map}.
*/
public boolean isNetworkConnected();
}