Name

global.VAToLATransferOutputProcessor

Description

No description available

Script

var VAToLATransferOutputProcessor = Class.create();
VAToLATransferOutputProcessor.prototype = {
  initialize: function() {},

  // This method is called for every VA One Api Call complete response.
  // It's only job is to pass the response through a scriptable which can be then tied back to Hybrid Queue.
  processCompleted: function(oneApiResponse) {
      new global.SentimentAnalysisOutputProcessor().processCompleted(oneApiResponse);
  },

  // This method is called for every VA One Api Call error response.
  // It's only job is to pass the response through a scriptable which can be then tied back to Hybrid Queue.
  processErrored: function(contextId, documentId, error) {
      new global.SentimentAnalysisOutputProcessor().processErrored(contextId, documentId, error);
  },

  // This method is called for every VA One Api Call cancel response.
  // It's only job is to pass the response through a scriptable which can be then tied back to Hybrid Queue.
  processCancelled: function(contextId, documentId) {
      new global.SentimentAnalysisOutputProcessor().processCancelled(contextId, documentId);
  },

  type: 'VAToLATransferOutputProcessor'
};

Sys ID

9082595153620110a260ddeeff7b126e

Offical Documentation

Official Docs: