Package org.activemq.service

Examples of org.activemq.service.QueueListEntry


     * @param id
     * @return
     */
    public MemoryManageable remove(Object id) {
        MemoryManageable result = null;
        QueueListEntry entry = internalList.getFirstEntry();
        try {
            while (entry != null) {
                MemoryManageable p = (MemoryManageable) entry.getElement();
                if (p.getMemoryId().equals(id)) {
                    result = p;
                    remove(p);
                    break;
                }
View Full Code Here

TOP

Related Classes of org.activemq.service.QueueListEntry

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.