Package org.sonatype.nexus.proxy.events

Examples of org.sonatype.nexus.proxy.events.RepositoryItemEventCache


      return this.requestCount;
    }

    @Subscribe
    public void onEvent(RepositoryItemEventCache evt) {
      final RepositoryItemEventCache riec = (RepositoryItemEventCache) evt;
      final String path = riec.getItem().getPath();
      if (path.endsWith("maven-metadata.xml") || path.endsWith("spoof-1.0.txt")) {
        // logging to track if listener received message in time for accurate test assertion
        if (getLogger().isInfoEnabled()) {
          getLogger().info(path + " -> CounterListener increments to " + (++requestCount) + " at ("
              + System.currentTimeMillis() + ")");
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.events.RepositoryItemEventCache

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.