com.clarifai.grpc.api.ProcessingInfoOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface ProcessingInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ProcessingInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* The type of method witin the runner to call.
*
*
* .clarifai.api.RunnerMethodType runner_method_type = 1;
* @return The enum numeric value on the wire for runnerMethodType.
*/
int getRunnerMethodTypeValue();
/**
*
* The type of method witin the runner to call.
*
*
* .clarifai.api.RunnerMethodType runner_method_type = 1;
* @return The runnerMethodType.
*/
com.clarifai.grpc.api.RunnerMethodType getRunnerMethodType();
/**
*
* A status of the processing. We use this for signalling end of a request stream, a runner
* item's processing should be cancelled, etc.
*
*
* .clarifai.api.status.Status status = 2;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* A status of the processing. We use this for signalling end of a request stream, a runner
* item's processing should be cancelled, etc.
*
*
* .clarifai.api.status.Status status = 2;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
*
* A status of the processing. We use this for signalling end of a request stream, a runner
* item's processing should be cancelled, etc.
*
*
* .clarifai.api.status.Status status = 2;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
}