All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.oss.foundation.logging.transactions.ComponentsMultiThread Maven / Gradle / Ivy

Go to download

This project is the logging log4j implementation library in the cisco vss foundation runtime

There is a newer version: 1.2.1-2
Show newest version
package com.cisco.oss.foundation.logging.transactions;

import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;

/**
 * Hold all components processing time during multi-threaded transaction
 * Each thread add it's components list to this components List
 *
 * @author abrandwi
 */
public class ComponentsMultiThread {
    private List components = new CopyOnWriteArrayList<>();

    public List getComponents() {
        return components;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy