Package com.volantis.synergetics

Examples of com.volantis.synergetics.ArrayCache


     * todo This is used in a thread unsafe manner.
     */
    public void addSecondaryDevice(String hdr, DefaultDevice dev) {
        synchronized (cacheLock) {
            if (secondaryDevices == null) {
                secondaryDevices = new ArrayCache(5);
            }

            // InternalDevice may have been added in the meantime. If so dont add this one
            // but check that it is consistant.
            Device newDev = (DefaultDevice) secondaryDevices.get(hdr);
View Full Code Here

TOP

Related Classes of com.volantis.synergetics.ArrayCache

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.