Back to project page BleAdapter.
The source code is released under:
Apache License
If you think the Android project BleAdapter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.indy.labs.android.BleEventAdapter; // w w w . j ava2 s .c o m import com.squareup.otto.Bus; import com.squareup.otto.ThreadEnforcer; public class BleEventBus extends Bus { private static BleEventBus ourInstance = new BleEventBus(ThreadEnforcer.ANY); public static BleEventBus getInstance() { return ourInstance; } public BleEventBus(ThreadEnforcer enforcer) { super(enforcer, "Indy-Ble-LowLevel"); } }