Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/IOteMessageService.java')
-rw-r--r--plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/IOteMessageService.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/IOteMessageService.java b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/IOteMessageService.java
index 583f34655f4..8ba1114b9fd 100644
--- a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/IOteMessageService.java
+++ b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/IOteMessageService.java
@@ -13,9 +13,12 @@ package org.eclipse.osee.ote.client.msg;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.List;
+
import org.eclipse.osee.ote.client.msg.core.IMessageSubscription;
import org.eclipse.osee.ote.message.commands.RecordCommand;
+import org.eclipse.osee.ote.message.enums.DataType;
import org.eclipse.osee.ote.message.tool.IFileTransferHandle;
+import org.eclipse.osee.ote.message.tool.MessageMode;
/**
* @author Ken J. Aguilar
@@ -23,6 +26,12 @@ import org.eclipse.osee.ote.message.tool.IFileTransferHandle;
public interface IOteMessageService {
IMessageSubscription subscribe(String name);
+ IMessageSubscription subscribe(String name, MessageMode mode);
+
+ IMessageSubscription subscribe(String name, DataType dataType, MessageMode mode);
+
+ IMessageSubscription subscribe(String name, String dataType, MessageMode mode);
+
IFileTransferHandle startRecording(String fileName, List<RecordCommand.MessageRecordDetails> list) throws FileNotFoundException, IOException;
void stopRecording() throws Exception;

Back to the top