Java Code Examples for javax.bluetooth.L2CAPConnectionNotifier
The following examples show how to use
javax.bluetooth.L2CAPConnectionNotifier. These examples are extracted from open source projects.
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 Project: jolie Source File: BTL2CapListener.java License: GNU Lesser General Public License v2.1 | 5 votes |
public BTL2CapListener( Interpreter interpreter, CommProtocolFactory protocolFactory, InputPort inputPort ) throws IOException { super( interpreter, protocolFactory, inputPort ); connectionNotifier = (L2CAPConnectionNotifier) Connector.open( inputPort().location().toString() ); }