Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / indexer / TmfBTreeTraceIndexer.java
CommitLineData
032ecd45 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
032ecd45
MAL
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.core.trace.indexer;
032ecd45 14
2bdf0193
AM
15import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
16import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.ITmfCheckpointIndex;
17import org.eclipse.tracecompass.tmf.core.trace.indexer.checkpoint.TmfCheckpointIndexer;
032ecd45
MAL
18
19/**
20 * An indexer that uses a Btree index to store checkpoints
21 *
22 * @since 3.0
23 * @author Marc-Andre Laperle
24 */
25public class TmfBTreeTraceIndexer extends TmfCheckpointIndexer {
26
27 /**
28 * Full trace indexer
29 *
30 * @param trace
31 * the trace to index
32 * @param interval
33 * the checkpoints interval
34 */
35 public TmfBTreeTraceIndexer(ITmfTrace trace, int interval) {
36 super(trace, interval);
37 }
38
39 @Override
40 protected ITmfCheckpointIndex createIndex(ITmfTrace trace) {
41 return new TmfBTreeTraceIndex(trace);
42 }
43}
This page took 0.076103 seconds and 5 git commands to generate.