Package org.sonatype.nexus.timeline

Examples of org.sonatype.nexus.timeline.EntryListCallback


   * like these in UT. This should NOT be used in production code, unless you want app that kills itself with OOM.
   */
  protected List<Entry> asList(int fromItem, int count, Set<String> types, Set<String> subTypes, Predicate<Entry> filter)
      throws Exception
  {
    final EntryListCallback result = new EntryListCallback();
    underTest.retrieve(fromItem, count, types, subTypes, filter, result);
    return result.getEntries();
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.timeline.EntryListCallback

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.