Uses of Class
hudson.util.CopyOnWriteList
-
Packages that use CopyOnWriteList Package Description hudson hudson.logging hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.model.listeners Listener interfaces for various events that occur inside the server.hudson.scm Jenkins's interface with source code management systems.hudson.util Other miscellaneous utility codejenkins.model -
-
Uses of CopyOnWriteList in hudson
Methods in hudson that return CopyOnWriteList Modifier and Type Method Description static <T> CopyOnWriteList<T>
ExtensionListView. createCopyOnWriteList(Class<T> type)
Creates a seriously hacked upCopyOnWriteList
that acts as a view to the currentExtensionList
. -
Uses of CopyOnWriteList in hudson.logging
Fields in hudson.logging declared as CopyOnWriteList Modifier and Type Field Description CopyOnWriteList<LogRecorder.Target>
LogRecorder. targets
Deprecated. -
Uses of CopyOnWriteList in hudson.model
Fields in hudson.model declared as CopyOnWriteList Modifier and Type Field Description protected CopyOnWriteList<JobProperty<? super JobT>>
Job. properties
List of properties configured for this project.Methods in hudson.model that return CopyOnWriteList Modifier and Type Method Description CopyOnWriteList<ComputerListener>
Hudson. getComputerListeners()
Deprecated.as of 1.286.CopyOnWriteList<ItemListener>
Hudson. getJobListeners()
Deprecated.as of 1.286. -
Uses of CopyOnWriteList in hudson.model.listeners
Fields in hudson.model.listeners declared as CopyOnWriteList Modifier and Type Field Description static CopyOnWriteList<RunListener>
RunListener. LISTENERS
Deprecated.as of 1.281 UseRunListener.all()
for read access, and useExtension
for registration. -
Uses of CopyOnWriteList in hudson.scm
Fields in hudson.scm declared as CopyOnWriteList Modifier and Type Field Description static CopyOnWriteList<ChangeLogAnnotator>
ChangeLogAnnotator. annotators
Deprecated.as of 1.286 UseChangeLogAnnotator.all()
for read access, andExtension
for registration. -
Uses of CopyOnWriteList in hudson.util
Fields in hudson.util declared as CopyOnWriteList Modifier and Type Field Description protected CopyOnWriteList<T>
PersistedList. data
Methods in hudson.util that return CopyOnWriteList Modifier and Type Method Description CopyOnWriteList
CopyOnWriteList.ConverterImpl. unmarshal(com.thoughtworks.xstream.io.HierarchicalStreamReader reader, com.thoughtworks.xstream.converters.UnmarshallingContext context)
Methods in hudson.util with parameters of type CopyOnWriteList Modifier and Type Method Description void
CopyOnWriteList. replaceBy(CopyOnWriteList<? extends E> that)
Completely replaces this list by the contents of the given list. -
Uses of CopyOnWriteList in jenkins.model
Methods in jenkins.model that return CopyOnWriteList Modifier and Type Method Description CopyOnWriteList<SCMListener>
Jenkins. getSCMListeners()
Deprecated.UseSCMListener.all()
instead.
-