Uses of Interface
org.eclipse.aether.RepositoryListener
Package
Description
The primary API of the
RepositorySystem
and its functionality.The various sub components that collectively implement the repository system.
Utilities to build repository and transfer listeners.
-
Uses of RepositoryListener in org.apache.maven.resolver.examples.util
Modifier and TypeClassDescriptionclass
A simplistic repository listener that logs events to the console.class
A demo class building reverse tree usingCollectStepData
trace data provided inRepositoryEvent
events fired during collection. -
Uses of RepositoryListener in org.eclipse.aether
Modifier and TypeClassDescriptionclass
A skeleton implementation for custom repository listeners.Modifier and TypeMethodDescriptionAbstractForwardingRepositorySystemSession.getRepositoryListener()
DefaultRepositorySystemSession.getRepositoryListener()
RepositorySystemSession.getRepositoryListener()
Gets the listener being notified of actions in the repository system.Modifier and TypeMethodDescriptionDefaultRepositorySystemSession.setRepositoryListener
(RepositoryListener repositoryListener) Sets the listener being notified of actions in the repository system.RepositorySystemSession.SessionBuilder.setRepositoryListener
(RepositoryListener repositoryListener) Sets the listener being notified of actions in the repository system.RepositorySystemSession.SessionBuilder.withRepositoryListener
(RepositoryListener... repositoryListeners) Adds the listeners to be notified of actions in the repository system.Modifier and TypeMethodDescriptionRepositorySystemSession.SessionBuilder.withRepositoryListener
(Collection<RepositoryListener> repositoryListeners) Adds the listeners to be notified of actions in the repository system. -
Uses of RepositoryListener in org.eclipse.aether.internal.impl
ModifierConstructorDescriptionDefaultRepositoryEventDispatcher
(Map<String, RepositoryListener> listeners) -
Uses of RepositoryListener in org.eclipse.aether.internal.impl.session
Modifier and TypeMethodDescriptionDefaultSessionBuilder.setRepositoryListener
(RepositoryListener repositoryListener) DefaultSessionBuilder.withRepositoryListener
(RepositoryListener... repositoryListeners) Modifier and TypeMethodDescriptionDefaultSessionBuilder.withRepositoryListener
(Collection<RepositoryListener> repositoryListeners) -
Uses of RepositoryListener in org.eclipse.aether.supplier
Modifier and TypeMethodDescriptionprotected Map
<String, RepositoryListener> RepositorySystemSupplier.createRepositoryListeners()
final Map
<String, RepositoryListener> RepositorySystemSupplier.getRepositoryListeners()
-
Uses of RepositoryListener in org.eclipse.aether.util.listener
Modifier and TypeClassDescriptionclass
A repository listener that delegates to zero or more other listeners (multicast).Modifier and TypeMethodDescriptionstatic RepositoryListener
ChainedRepositoryListener.newInstance
(RepositoryListener listener1, RepositoryListener listener2) Creates a new multicast listener that delegates to the specified listeners.Modifier and TypeMethodDescriptionvoid
ChainedRepositoryListener.add
(RepositoryListener listener) Adds the specified listener to the end of the multicast chain.protected void
ChainedRepositoryListener.handleError
(RepositoryEvent event, RepositoryListener listener, RuntimeException error) Invoked when any listener throws, by default is no op, extend if required.static RepositoryListener
ChainedRepositoryListener.newInstance
(RepositoryListener listener1, RepositoryListener listener2) Creates a new multicast listener that delegates to the specified listeners.void
ChainedRepositoryListener.remove
(RepositoryListener listener) Removes the specified listener from the multicast chain.Modifier and TypeMethodDescriptionvoid
ChainedRepositoryListener.add
(Collection<? extends RepositoryListener> listeners) Adds the specified listeners to the end of the multicast chain.ModifierConstructorDescriptionChainedRepositoryListener
(RepositoryListener... listeners) Creates a new multicast listener that delegates to the specified listeners.ModifierConstructorDescriptionChainedRepositoryListener
(Collection<? extends RepositoryListener> listeners) Creates a new multicast listener that delegates to the specified listeners.