Package com.slytechs.capture.file.indexer

Examples of com.slytechs.capture.file.indexer.PositionIndexer


    }
  }

  public PacketIndexer<T> getPacketIndexer() throws IOException {

    final PositionIndexer indexer = this.getPositionIndexer();
    final PacketIterator<T> packets = this.getPacketIterator();

    return new PacketIndexerImpl<T>(indexer, packets);
  }
View Full Code Here


    return this.indexer.get();
  }

  public RawIndexer getRawIndexer() throws IOException {
    final PositionIndexer indexer = this.getPositionIndexer();
    final RawIterator raw = this.getRawIterator();

    return new RawIndexerImpl(raw, indexer);
  }
View Full Code Here

  }

  @SuppressWarnings("unchecked")
  public RecordIndexer<R> getRecordIndexer() throws IOException {

    final PositionIndexer indexer = this.getPositionIndexer();
    RecordIterator<R> records = (RecordIterator<R>) this.getRecordIterator();

    return new RecordIndexerImpl<R>(indexer, records);
  }
View Full Code Here

TOP

Related Classes of com.slytechs.capture.file.indexer.PositionIndexer

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.