com.cisco.oss.foundation.logging.transactions.ComponentsMultiThread Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logging-log4j Show documentation
Show all versions of logging-log4j Show documentation
This project is the logging log4j implementation library in the cisco vss foundation runtime
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