Uses of Interface
org.eclipse.aether.transfer.TransferListener
Package
Description
The primary API of the
RepositorySystem
and its functionality.The contract to access artifacts/metadata in remote repositories.
A listener and various exception types dealing with the transfer of a resource between the local system and a remote
repository.
Utilities to build repository and transfer listeners.
-
Uses of TransferListener in org.apache.maven.resolver.examples.util
Modifier and TypeClassDescriptionclass
A simplistic transfer listener that logs uploads/downloads to the console. -
Uses of TransferListener in org.eclipse.aether
Modifier and TypeMethodDescriptionAbstractForwardingRepositorySystemSession.getTransferListener()
DefaultRepositorySystemSession.getTransferListener()
RepositorySystemSession.getTransferListener()
Gets the listener being notified of uploads/downloads by the repository system.Modifier and TypeMethodDescriptionDefaultRepositorySystemSession.setTransferListener
(TransferListener transferListener) Sets the listener being notified of uploads/downloads by the repository system.RepositorySystemSession.SessionBuilder.setTransferListener
(TransferListener transferListener) Sets the listener being notified of uploads/downloads by the repository system.RepositorySystemSession.SessionBuilder.withTransferListener
(TransferListener... transferListeners) Adds the listener to be notified of uploads/downloads by the repository system.Modifier and TypeMethodDescriptionRepositorySystemSession.SessionBuilder.withTransferListener
(Collection<TransferListener> transferListeners) Adds the listener to be notified of uploads/downloads by the repository system. -
Uses of TransferListener in org.eclipse.aether.internal.impl.session
Modifier and TypeMethodDescriptionDefaultSessionBuilder.setTransferListener
(TransferListener transferListener) DefaultSessionBuilder.withTransferListener
(TransferListener... transferListeners) Modifier and TypeMethodDescriptionDefaultSessionBuilder.withTransferListener
(Collection<TransferListener> transferListeners) -
Uses of TransferListener in org.eclipse.aether.spi.connector
Modifier and TypeMethodDescriptionTransfer.getListener()
Gets the listener that is to be notified during the transfer.Modifier and TypeMethodDescriptionArtifactDownload.setListener
(TransferListener listener) ArtifactUpload.setListener
(TransferListener listener) MetadataDownload.setListener
(TransferListener listener) MetadataUpload.setListener
(TransferListener listener) -
Uses of TransferListener in org.eclipse.aether.transfer
Modifier and TypeClassDescriptionclass
A skeleton implementation for custom transfer listeners. -
Uses of TransferListener in org.eclipse.aether.util.listener
Modifier and TypeClassDescriptionclass
A transfer listener that delegates to zero or more other listeners (multicast).Modifier and TypeMethodDescriptionstatic TransferListener
ChainedTransferListener.newInstance
(TransferListener listener1, TransferListener listener2) Creates a new multicast listener that delegates to the specified listeners.Modifier and TypeMethodDescriptionvoid
ChainedTransferListener.add
(TransferListener listener) Adds the specified listener to the end of the multicast chain.protected void
ChainedTransferListener.handleError
(TransferEvent event, TransferListener listener, RuntimeException error) Invoked when any listener throws, by default is no op, extend if required.static TransferListener
ChainedTransferListener.newInstance
(TransferListener listener1, TransferListener listener2) Creates a new multicast listener that delegates to the specified listeners.void
ChainedTransferListener.remove
(TransferListener listener) Removes the specified listener from the multicast chain.Modifier and TypeMethodDescriptionvoid
ChainedTransferListener.add
(Collection<? extends TransferListener> listeners) Adds the specified listeners to the end of the multicast chain.ModifierConstructorDescriptionChainedTransferListener
(TransferListener... listeners) Creates a new multicast listener that delegates to the specified listeners.ModifierConstructorDescriptionChainedTransferListener
(Collection<? extends TransferListener> listeners) Creates a new multicast listener that delegates to the specified listeners.