net.sf.microlog.midp.bluetooth.BluetoothConnectionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microlog-logger-midp-bluetooth
Show all versions of microlog-logger-midp-bluetooth
The Microlog MIPD Bluetooth module contains the BluetoothAppender for MIDP.
package net.sf.microlog.midp.bluetooth;
import java.io.IOException;
interface BluetoothConnectionHandler {
void setConnectionString(final String serverUrl);
void findAndSetConnectionString(final BluetoothRemoteDevice remoteDevice);
void shutdownLoggingService() throws IOException;
void close() throws IOException;
void writeLogToStream(final String formattedLogStatement);
String getBluetoothClientID(final String clientID);
boolean openConnection();
}