You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2011/02/16 19:04:17 UTC

svn commit: r1071335 - /uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/OutputChannel.java

Author: cwiklik
Date: Wed Feb 16 18:04:17 2011
New Revision: 1071335

URL: http://svn.apache.org/viewvc?rev=1071335&view=rev
Log:
UIMA-2055 Removed methods no longer needed after refactoring JmsOutputChannel.java

Modified:
    uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/OutputChannel.java

Modified: uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/OutputChannel.java
URL: http://svn.apache.org/viewvc/uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/OutputChannel.java?rev=1071335&r1=1071334&r2=1071335&view=diff
==============================================================================
--- uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/OutputChannel.java (original)
+++ uima/uima-as/trunk/uimaj-as-core/src/main/java/org/apache/uima/aae/OutputChannel.java Wed Feb 16 18:04:17 2011
@@ -23,8 +23,6 @@ import org.apache.uima.aae.InProcessCach
 import org.apache.uima.aae.controller.AnalysisEngineController;
 import org.apache.uima.aae.controller.Endpoint;
 import org.apache.uima.aae.error.AsynchAEException;
-import org.apache.uima.analysis_engine.metadata.AnalysisEngineMetaData;
-import org.apache.uima.cas.CAS;
 import org.apache.uima.resource.metadata.ProcessingResourceMetaData;
 
 public interface OutputChannel extends Channel {
@@ -32,32 +30,14 @@ public interface OutputChannel extends C
 
   public void initialize() throws AsynchAEException;
 
-  public void sendRequest(String aCasReferenceId, Endpoint anEndpoint) throws AsynchAEException;
-
-  public void sendRequest(String aCasReferenceId, Endpoint[] anEndpoint) throws AsynchAEException;
-
-  public void sendRequest(int aCommand, Endpoint anEndpoint) throws AsynchAEException;
-
   public void sendRequest(int aCommand, String aCasReferenceId, Endpoint anEndpoint)
           throws AsynchAEException;
 
-  public void sendReply(int aCommand, Endpoint anEndpoint) throws AsynchAEException;
-
-  public void sendReply(int aCommand, Endpoint anEndpoint, String aCasReferenceId)
-          throws AsynchAEException;
-
   public void sendReply(int aCommand, Endpoint anEndpoint, String aCasReferenceId, boolean notifyOnJmsException)
   throws AsynchAEException;
 
-  public void sendReply(CAS aCas, String anInputCasReferenceId, String aNewCasReferenceId,
-          Endpoint anEndpoint, long sequence) throws AsynchAEException;
-
-  public void sendReply(String aCasReferenceId, Endpoint anEndpoint) throws AsynchAEException;
-
   public void sendReply(CacheEntry entry, Endpoint anEndpoint) throws AsynchAEException;
 
-  // public void sendReply( AnalysisEngineMetaData anAnalysisEngineMetadata, Endpoint anEndpoint,
-  // boolean serialize ) throws AsynchAEException;
   public void sendReply(ProcessingResourceMetaData aProcessingResourceMetadata,
           Endpoint anEndpoint, boolean serialize) throws AsynchAEException;