Add copyright header.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / component / ITmfDataProvider.java
CommitLineData
550d787e
FC
1/*******************************************************************************
2 * Copyright (c) 2009, 2010 Ericsson
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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
6c13869b 13package org.eclipse.linuxtools.tmf.core.component;
8c8bf09f 14
72f1e62a 15import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
6c13869b 16import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest;
c32744d6 17import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
8c8bf09f 18
550d787e
FC
19/**
20 * <b><u>ITmfDataRequest</u></b>
21 * <p>
22 * TODO: Implement me. Please.
23 */
f17b2f70 24public interface ITmfDataProvider<T extends ITmfEvent> extends ITmfComponent {
8c8bf09f
ASL
25
26 /**
27 * Queues the request for processing.
28 *
29 * If the request can't be serviced, it will fail (i.e. isFailed() will be set).
30 *
f17b2f70
FC
31 * @param request The request to process
32 */
33 public void sendRequest(ITmfDataRequest<T> request);
34 public void fireRequest();
35 public void notifyPendingRequest(boolean isIncrement);
c32744d6
FC
36
37 /**
38 * Return the next event based on the context supplied. The context
39 * will be updated for the subsequent read.
40 *
41 * @param context the trace read context (updated)
42 * @return the event referred to by context
43 */
44 public T getNext(ITmfContext context);
8c8bf09f 45}
This page took 0.035903 seconds and 5 git commands to generate.