Package ai.konduit.serving.output.types
Interface BatchOutput
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ClassifierOutput,DetectedObjectsBatch,ManyDetectedObjects,NDArrayOutput,RegressionOutput
public interface BatchOutput extends java.io.SerializableThe Batch Output represents the output from an output adapter. This includes any common fields that the output needs when returning data to the end user.- Author:
- Adam Gibson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringbatchId()Return the batch id for this batch output.voidsetBatchId(java.lang.String batchId)Set the batch id for the batch output.
-
-
-
Method Detail
-
setBatchId
void setBatchId(java.lang.String batchId)
Set the batch id for the batch output. This batch id is used during retraining.- Parameters:
batchId- the batch id for the batch output
-
batchId
java.lang.String batchId()
Return the batch id for this batch output. The batch id used for retraining.- Returns:
- batch id
-
-