(no commit message)
[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;
4import org.eclipse.linuxtools.tmf.request.ITmfDataRequest;
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 */
15 public void sendRequest(ITmfDataRequest<T> request);
16
17}
This page took 0.025509 seconds and 5 git commands to generate.