Uses of Interface
org.eclipse.aether.RepositoryListener
-
Packages that use RepositoryListener Package Description org.eclipse.aether The primary API of theRepositorySystem
and its functionality.org.eclipse.aether.impl.guice The integration with the dependency injection framework Google Guice.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.util.listener Utilities to build repository and transfer listeners. -
-
Uses of RepositoryListener in org.eclipse.aether
Classes in org.eclipse.aether that implement RepositoryListener Modifier and Type Class Description class
AbstractRepositoryListener
A skeleton implementation for custom repository listeners.Fields in org.eclipse.aether declared as RepositoryListener Modifier and Type Field Description private RepositoryListener
DefaultRepositorySystemSession. repositoryListener
Methods in org.eclipse.aether that return RepositoryListener Modifier and Type Method Description RepositoryListener
AbstractForwardingRepositorySystemSession. getRepositoryListener()
RepositoryListener
DefaultRepositorySystemSession. getRepositoryListener()
RepositoryListener
RepositorySystemSession. getRepositoryListener()
Gets the listener being notified of actions in the repository system.Methods in org.eclipse.aether with parameters of type RepositoryListener Modifier and Type Method Description DefaultRepositorySystemSession
DefaultRepositorySystemSession. setRepositoryListener(RepositoryListener repositoryListener)
Sets the listener being notified of actions in the repository system. -
Uses of RepositoryListener in org.eclipse.aether.impl.guice
Methods in org.eclipse.aether.impl.guice that return types with arguments of type RepositoryListener Modifier and Type Method Description (package private) java.util.Set<RepositoryListener>
AetherModule. providesRepositoryListeners()
-
Uses of RepositoryListener in org.eclipse.aether.internal.impl
Fields in org.eclipse.aether.internal.impl with type parameters of type RepositoryListener Modifier and Type Field Description private java.util.Collection<RepositoryListener>
DefaultRepositoryEventDispatcher. listeners
Methods in org.eclipse.aether.internal.impl with parameters of type RepositoryListener Modifier and Type Method Description DefaultRepositoryEventDispatcher
DefaultRepositoryEventDispatcher. addRepositoryListener(RepositoryListener listener)
private void
DefaultRepositoryEventDispatcher. dispatch(RepositoryEvent event, RepositoryListener listener)
Method parameters in org.eclipse.aether.internal.impl with type arguments of type RepositoryListener Modifier and Type Method Description DefaultRepositoryEventDispatcher
DefaultRepositoryEventDispatcher. setRepositoryListeners(java.util.Collection<RepositoryListener> listeners)
Constructor parameters in org.eclipse.aether.internal.impl with type arguments of type RepositoryListener Constructor Description DefaultRepositoryEventDispatcher(java.util.Set<RepositoryListener> listeners)
-
Uses of RepositoryListener in org.eclipse.aether.util.listener
Classes in org.eclipse.aether.util.listener that implement RepositoryListener Modifier and Type Class Description class
ChainedRepositoryListener
A repository listener that delegates to zero or more other listeners (multicast).Fields in org.eclipse.aether.util.listener with type parameters of type RepositoryListener Modifier and Type Field Description private java.util.List<RepositoryListener>
ChainedRepositoryListener. listeners
Methods in org.eclipse.aether.util.listener that return RepositoryListener Modifier and Type Method Description static RepositoryListener
ChainedRepositoryListener. newInstance(RepositoryListener listener1, RepositoryListener listener2)
Creates a new multicast listener that delegates to the specified listeners.Methods in org.eclipse.aether.util.listener with parameters of type RepositoryListener Modifier and Type Method Description void
ChainedRepositoryListener. add(RepositoryListener listener)
Adds the specified listener to the end of the multicast chain.protected void
ChainedRepositoryListener. handleError(RepositoryEvent event, RepositoryListener listener, java.lang.RuntimeException error)
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.Method parameters in org.eclipse.aether.util.listener with type arguments of type RepositoryListener Modifier and Type Method Description void
ChainedRepositoryListener. add(java.util.Collection<? extends RepositoryListener> listeners)
Adds the specified listeners to the end of the multicast chain.Constructors in org.eclipse.aether.util.listener with parameters of type RepositoryListener Constructor Description ChainedRepositoryListener(RepositoryListener... listeners)
Creates a new multicast listener that delegates to the specified listeners.Constructor parameters in org.eclipse.aether.util.listener with type arguments of type RepositoryListener Constructor Description ChainedRepositoryListener(java.util.Collection<? extends RepositoryListener> listeners)
Creates a new multicast listener that delegates to the specified listeners.
-