javax.bluetooth.L2CAPConnectionNotifier Java Examples

The following examples show how to use javax.bluetooth.L2CAPConnectionNotifier. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BTL2CapListener.java    From jolie with GNU Lesser General Public License v2.1 5 votes vote down vote up
public BTL2CapListener(
	Interpreter interpreter,
	CommProtocolFactory protocolFactory,
	InputPort inputPort )
	throws IOException {
	super(
		interpreter,
		protocolFactory,
		inputPort );
	connectionNotifier =
		(L2CAPConnectionNotifier) Connector.open( inputPort().location().toString() );
}