List of usage examples for com.google.common.base Service interface-usage
From source file com.notifier.desktop.discovery.DiscoveryManager.java
public interface DiscoveryManager extends Service {
}
From source file com.notifier.desktop.upnp.UpnpManager.java
public interface UpnpManager extends Service, Named {
}
From source file com.notifier.desktop.transport.Transport.java
public interface Transport extends Service, Named {
}
From source file com.notifier.desktop.service.ServiceServer.java
public interface ServiceServer extends Service, Named { public enum Command { STOP, PING } }
From source file com.notifier.desktop.notification.broadcast.NotificationBroadcaster.java
public interface NotificationBroadcaster extends Service, Named { void broadcast(Notification notification, String deviceName, boolean privateMode); }
From source file com.notifier.desktop.device.DeviceManager.java
public interface DeviceManager extends Service, Named { void waitForPairing(PairingListener listener); void cancelWaitForPairing();
From source file com.notifier.desktop.network.NetworkManager.java
public interface NetworkManager extends Service, Named { String getLocalHostName(); InetAddress getLocalHostAddress(); byte[] getLocalMacAddress();
From source file ch.css.workingdiary.service.CompetenceService.java
/** * Created by sandro on 15.06.2015. */ public class CompetenceService implements Service { private final CompetenceDao competenceDao;
From source file ch.css.workingdiary.service.EntryService.java
/** * Created by sandro on 04.03.2015. */ public class EntryService implements Service { private final EntryDao entryDao;
From source file com.google.inject.service.AsyncService.java
/**
* An asynchronous implementation of {@link com.google.inject.service.Service}
* that provides convenience callbacks to create your own services.
*
* @author dhanji@gmail.com (Dhanji R. Prasanna)
*/