Package org.apache.ojb.broker.util.collections

Examples of org.apache.ojb.broker.util.collections.RemovalAwareCollection


    {
        ManageableCollection col;

        if (collectionClass == null)
        {
            col = new RemovalAwareCollection();
        }
        else
        {
            try
            {
View Full Code Here


     * @see JS2-590
     * @return
     */
    public static final Collection createCollection()
    {
        return java.util.Collections.synchronizedCollection(new RemovalAwareCollection());
    }
View Full Code Here

    {
        ManageableCollection col;

        if (collectionClass == null)
        {
            col = new RemovalAwareCollection();
        }
        else
        {
            try
            {
View Full Code Here

    public static final Collection createCollection()
    {
        // highly concurrent applications will require using
        // createSynchronizedCollection() here instead of this OJB
        // native type which is not synchronized.
        return new RemovalAwareCollection();
    }
View Full Code Here

TOP

Related Classes of org.apache.ojb.broker.util.collections.RemovalAwareCollection

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.