Examples of ResourceDescriptorStoreFactory


Examples of com.volantis.synergetics.descriptorstore.ResourceDescriptorStoreFactory

                // @todo this should probably take a sleep period from the
                // properties if set.
                Runnable cleanUp = new Runnable() {
                    public void run() {
                        Object lock = new Object();
                        ResourceDescriptorStoreFactory rdsf =
                            ResourceDescriptorStoreFactory.getDefaultInstance();
                        JDOResourceDescriptorStore ds =
                            (JDOResourceDescriptorStore)
                            rdsf.getResourceDescriptorStore();
                        while (true) {
                            synchronized (lock) {
                                try {
                                    Thread.sleep(30000);
                                } catch (InterruptedException e) {
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.