[Bug309042] Some improvements on TmfExperiment and its context. Also fixed a number...
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / component / ITmfDataProvider.java
CommitLineData
8c8bf09f
ASL
1package org.eclipse.linuxtools.tmf.component;
2
3import org.eclipse.linuxtools.tmf.event.TmfData;
951d134a 4import org.eclipse.linuxtools.tmf.request.TmfDataRequest;
8c8bf09f
ASL
5
6public interface ITmfDataProvider<T extends TmfData> {
7
8 /**
9 * Queues the request for processing.
10 *
11 * If the request can't be serviced, it will fail (i.e. isFailed() will be set).
12 *
13 * @param request The request to process
14 */
951d134a 15 public void sendRequest(TmfDataRequest<T> request);
8c8bf09f
ASL
16
17}
This page took 0.02519 seconds and 5 git commands to generate.