Add support for streaming feature of LTTng Tools 2.1 (part 1)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / ISessionInfo.java
index dbbfb566ee4fb6d0d32166e2804cb9387ecb82cb..925151f427164b2e5e73ba4bf99fe377c6b24b3f 100644 (file)
@@ -65,4 +65,16 @@ public interface ISessionInfo extends ITraceInfo {
      * @param domainInfo domain information to add.
      */
     public void addDomain(IDomainInfo domainInfo);
+
+    /**
+     * Returns if session is streamed over network
+     * @return <code>true</code> if streamed over network else <code>false</code>
+     */
+    public boolean isStreamedTrace();
+
+    /**
+     * Sets whether the trace is streamed or not
+     * @param isStreamedTrace <code>true</code> if streamed over network else <code>false</code>
+     */
+    public void setStreamedTrace(boolean isStreamedTrace);
 }
This page took 0.028227 seconds and 5 git commands to generate.