Uses of Interface
org.eclipse.aether.transfer.TransferListener
-
Packages that use TransferListener Package Description org.eclipse.aether The primary API of theRepositorySystem
and its functionality.org.eclipse.aether.connector.basic Support for downloads/uploads using remote repositories that have a URI-based content structure/layout.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.spi.connector The contract to access artifacts/metadata in remote repositories.org.eclipse.aether.transfer A listener and various exception types dealing with the transfer of a resource between the local system and a remote repository.org.eclipse.aether.util.listener Utilities to build repository and transfer listeners. -
-
Uses of TransferListener in org.eclipse.aether
Fields in org.eclipse.aether declared as TransferListener Modifier and Type Field Description private TransferListener
DefaultRepositorySystemSession. transferListener
Methods in org.eclipse.aether that return TransferListener Modifier and Type Method Description TransferListener
AbstractForwardingRepositorySystemSession. getTransferListener()
TransferListener
DefaultRepositorySystemSession. getTransferListener()
TransferListener
RepositorySystemSession. getTransferListener()
Gets the listener being notified of uploads/downloads by the repository system.Methods in org.eclipse.aether with parameters of type TransferListener Modifier and Type Method Description DefaultRepositorySystemSession
DefaultRepositorySystemSession. setTransferListener(TransferListener transferListener)
Sets the listener being notified of uploads/downloads by the repository system. -
Uses of TransferListener in org.eclipse.aether.connector.basic
Fields in org.eclipse.aether.connector.basic declared as TransferListener Modifier and Type Field Description private TransferListener
TransferTransportListener. listener
-
Uses of TransferListener in org.eclipse.aether.internal.impl
Classes in org.eclipse.aether.internal.impl that implement TransferListener Modifier and Type Class Description (package private) static class
DefaultDeployer.ArtifactUploadListener
(package private) static class
DefaultDeployer.MetadataUploadListener
(package private) class
SafeTransferListener
Fields in org.eclipse.aether.internal.impl declared as TransferListener Modifier and Type Field Description private TransferListener
SafeTransferListener. listener
Methods in org.eclipse.aether.internal.impl that return TransferListener Modifier and Type Method Description static TransferListener
SafeTransferListener. wrap(RepositorySystemSession session)
Constructors in org.eclipse.aether.internal.impl with parameters of type TransferListener Constructor Description SafeTransferListener(TransferListener listener)
-
Uses of TransferListener in org.eclipse.aether.spi.connector
Fields in org.eclipse.aether.spi.connector declared as TransferListener Modifier and Type Field Description private TransferListener
Transfer. listener
Methods in org.eclipse.aether.spi.connector that return TransferListener Modifier and Type Method Description TransferListener
Transfer. getListener()
Gets the listener that is to be notified during the transfer.Methods in org.eclipse.aether.spi.connector with parameters of type TransferListener Modifier and Type Method Description ArtifactDownload
ArtifactDownload. setListener(TransferListener listener)
ArtifactUpload
ArtifactUpload. setListener(TransferListener listener)
MetadataDownload
MetadataDownload. setListener(TransferListener listener)
MetadataUpload
MetadataUpload. setListener(TransferListener listener)
(package private) Transfer
Transfer. setListener(TransferListener listener)
Sets the listener that is to be notified during the transfer. -
Uses of TransferListener in org.eclipse.aether.transfer
Classes in org.eclipse.aether.transfer that implement TransferListener Modifier and Type Class Description class
AbstractTransferListener
A skeleton implementation for custom transfer listeners. -
Uses of TransferListener in org.eclipse.aether.util.listener
Classes in org.eclipse.aether.util.listener that implement TransferListener Modifier and Type Class Description class
ChainedTransferListener
A transfer listener that delegates to zero or more other listeners (multicast).Fields in org.eclipse.aether.util.listener with type parameters of type TransferListener Modifier and Type Field Description private java.util.List<TransferListener>
ChainedTransferListener. listeners
Methods in org.eclipse.aether.util.listener that return TransferListener Modifier and Type Method Description static TransferListener
ChainedTransferListener. newInstance(TransferListener listener1, TransferListener listener2)
Creates a new multicast listener that delegates to the specified listeners.Methods in org.eclipse.aether.util.listener with parameters of type TransferListener Modifier and Type Method Description void
ChainedTransferListener. add(TransferListener listener)
Adds the specified listener to the end of the multicast chain.protected void
ChainedTransferListener. handleError(TransferEvent event, TransferListener listener, java.lang.RuntimeException error)
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.Method parameters in org.eclipse.aether.util.listener with type arguments of type TransferListener Modifier and Type Method Description void
ChainedTransferListener. add(java.util.Collection<? extends TransferListener> listeners)
Adds the specified listeners to the end of the multicast chain.Constructors in org.eclipse.aether.util.listener with parameters of type TransferListener Constructor Description ChainedTransferListener(TransferListener... 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 TransferListener Constructor Description ChainedTransferListener(java.util.Collection<? extends TransferListener> listeners)
Creates a new multicast listener that delegates to the specified listeners.
-