de.swm.gwt.client.mobile.network.NativeNetworkHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-gwt-client Show documentation
Show all versions of swm-gwt-client Show documentation
Plain GWT Swm erweiterungen, auch zur benutzung in mobilen Geraeten
The newest version!
package de.swm.gwt.client.mobile.network;
/**
* Will detect network availability using a native implementation instead of polling.
*
*/
public interface NativeNetworkHandler {
/**
* Trie is Network is available.
* @return true if network such as 3g is present
*/
boolean hasNetwork();
}