X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.tmf.core%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Ftmf%2Fcore%2Frequest%2FTmfDataRequest.java;h=025657ab0d1d66d8bd55ddf282df10d893f976f8;hb=6f4e8ec0ae816788e83accc0de316f7bd783c35c;hp=e7abfb8b25f32e0867cd9d68f0bfd55355f4626f;hpb=73ecde7e60983031eeab2c961701b97b10f2616d;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/request/TmfDataRequest.java b/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/request/TmfDataRequest.java index e7abfb8b25..025657ab0d 100644 --- a/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/request/TmfDataRequest.java +++ b/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/request/TmfDataRequest.java @@ -90,11 +90,21 @@ public abstract class TmfDataRequest implements ITmfDataRequest { private final Class fDataType; private final ExecutionType fExecType; - private final int fRequestId; // A unique request ID - protected long fIndex; // The index (rank) of the requested event - protected int fNbRequested; // The number of requested events (ALL_DATA for all) - private final int fBlockSize; // The block size (for BG requests) - private int fNbRead; // The number of reads so far + + /** A unique request ID */ + private final int fRequestId; + + /** The index (rank) of the requested event */ + protected long fIndex; + + /** The number of requested events (ALL_DATA for all) */ + protected int fNbRequested; + + /** The block size (for BG requests) */ + private final int fBlockSize; + + /** The number of reads so far */ + private int fNbRead; private final CountDownLatch startedLatch = new CountDownLatch(1); private final CountDownLatch completedLatch = new CountDownLatch(1);