Package net.rim.device.api.system

Examples of net.rim.device.api.system.RuntimeStore.waitFor()


        while(running) {
            try {
                RuntimeStore rts = RuntimeStore.getRuntimeStore();
                try {
                    Utilities.log("XXXX " + Thread.currentThread().getName() + " waiting for object from RTS");
                    Object obj = rts.waitFor(NfcTransHandlerApp.PASSED_TO_UI_DATA_ID);
                    Utilities.log("XXXX " + Thread.currentThread().getName() + " got object from RTS=" + obj);
                    if(obj != null) {
                        String aids_received = (String) rts.remove(NfcTransHandlerApp.PASSED_TO_UI_DATA_ID);
                        Utilities.log("XXXX " + Thread.currentThread().getName() + " AIDs received are:" + aids_received);
                        setAidsReceived(Utilities.hexPresentation(aids_received));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.