Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for EventSpyDispatcher (0.28 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyDispatcher.java

    /**
     * Dispatches callbacks to all registered EventSpies.
     * @since 3.0.2
     */
    @Named
    @Singleton
    public class EventSpyDispatcher {
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final List<EventSpy> eventSpies;
    
        @Inject
        public EventSpyDispatcher(List<EventSpy> eventSpies) {
            // make copy to get rid of needless overhead for dynamic lookups
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                ProjectArtifactFactory artifactFactory,
                EventSpyDispatcher eventSpyDispatcher,
                ProjectArtifactsCache projectArtifactsCache,
                MessageBuilderFactory messageBuilderFactory) {
            this.dependenciesResolver = dependenciesResolver;
            this.artifactFactory = artifactFactory;
            this.eventSpyDispatcher = eventSpyDispatcher;
            this.projectArtifactsCache = projectArtifactsCache;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

     */
    @PlexusTest
    public class DefaultRepositorySystemSessionFactoryTest {
        @Inject
        protected MavenRepositorySystem mavenRepositorySystem;
    
        @Inject
        protected EventSpyDispatcher eventSpyDispatcher;
    
        @Inject
        protected org.eclipse.aether.RepositorySystem aetherRepositorySystem;
    
        @Inject
        protected RuntimeInformation information;
    
        @Inject
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java

        public Boolean coloredOutput;
        public Terminal terminal;
        public Consumer<String> writer;
    
        public ContainerCapsule containerCapsule;
        public Lookup lookup;
        public EventSpyDispatcher eventSpyDispatcher;
    
        public BuildEventListener buildEventListener;
    
        // paths user can override from CLI, and we need to set on MavenExReq
        public Path installationSettingsPath;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        }
    
        @Override
        public MavenExecutionRequest setEventSpyDispatcher(EventSpyDispatcher eventSpyDispatcher) {
            this.eventSpyDispatcher = eventSpyDispatcher;
            return this;
        }
    
        @Override
        public EventSpyDispatcher getEventSpyDispatcher() {
            return eventSpyDispatcher;
        }
    
        @Override
        public Map<String, Object> getData() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                RepositorySystem repoSystem,
                EventSpyDispatcher eventSpyDispatcher,
                RuntimeInformation runtimeInformation,
                TypeRegistry typeRegistry,
                VersionScheme versionScheme,
                Map<String, RepositorySystemSessionExtender> sessionExtenders) {
            this.repoSystem = repoSystem;
            this.eventSpyDispatcher = eventSpyDispatcher;
            this.runtimeInformation = runtimeInformation;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 17 05:56:35 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyExecutionListener.java

    /**
     * Forwards execution events to EventSpies.
     * @since 3.0.2
     */
    class EventSpyExecutionListener extends AbstractExecutionListener {
    
        private final EventSpyDispatcher dispatcher;
    
        private final ExecutionListener delegate;
    
        EventSpyExecutionListener(EventSpyDispatcher dispatcher, ExecutionListener delegate) {
            this.dispatcher = dispatcher;
            this.delegate = delegate;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyRepositoryListener.java

    /**
     * Forwards repository events to EventSpies.
     * @since 3.0.2
     */
    class EventSpyRepositoryListener extends AbstractRepositoryListener {
        private final EventSpyDispatcher dispatcher;
    
        private final RepositoryListener delegate;
    
        EventSpyRepositoryListener(EventSpyDispatcher dispatcher, RepositoryListener delegate) {
            this.dispatcher = dispatcher;
            this.delegate = delegate;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvoker.java

            // we carry over only "resident" things
            shadow.containerCapsule = mavenContext.containerCapsule;
            shadow.lookup = mavenContext.lookup;
            shadow.eventSpyDispatcher = mavenContext.eventSpyDispatcher;
            shadow.simplexTransferListener = mavenContext.simplexTransferListener;
            shadow.maven = mavenContext.maven;
    
            return shadow;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @since 4.0.0
         */
        Path getRootDirectory();
    
        /**
         * @since 3.3.0
         */
        MavenExecutionRequest setEventSpyDispatcher(EventSpyDispatcher eventSpyDispatcher);
    
        /**
         * @since 3.3.0
         */
        EventSpyDispatcher getEventSpyDispatcher();
    
        /**
         * @since 3.3.0
         */
        Map<String, Object> getData();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top