Package org.javabluetooth.stack.l2cap

Examples of org.javabluetooth.stack.l2cap.L2CAPChannelFactory


        if (sdpServer == null) sdpServer = new SDPServer();
        return sdpServer;
    }

    public L2CAPChannel resolveAndCreateL2CAPChannel(long psm, L2CAPLink link, short localChannelID, short remoteChannelID) {
        L2CAPChannelFactory channelCreator = (L2CAPChannelFactory)services.get(new Long(psm));
        return channelCreator.newL2CAPChannel();
    }
View Full Code Here

TOP

Related Classes of org.javabluetooth.stack.l2cap.L2CAPChannelFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.