org.tensorflow.distruntime.CreateWorkerSessionRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/worker.proto
package org.tensorflow.distruntime;
public interface CreateWorkerSessionRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.CreateWorkerSessionRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Sessions are identified by a given handle.
*
*
* string session_handle = 1;
*/
java.lang.String getSessionHandle();
/**
*
* Sessions are identified by a given handle.
*
*
* string session_handle = 1;
*/
com.google.protobuf.ByteString
getSessionHandleBytes();
/**
*
* Defines the configuration of a TensorFlow worker.
*
*
* .tensorflow.ServerDef server_def = 2;
*/
boolean hasServerDef();
/**
*
* Defines the configuration of a TensorFlow worker.
*
*
* .tensorflow.ServerDef server_def = 2;
*/
org.tensorflow.distruntime.ServerDef getServerDef();
/**
*
* Defines the configuration of a TensorFlow worker.
*
*
* .tensorflow.ServerDef server_def = 2;
*/
org.tensorflow.distruntime.ServerDefOrBuilder getServerDefOrBuilder();
/**
*
* If true, any resources such as Variables used in the session will not be
* shared with other sessions.
*
*
* bool isolate_session_state = 3;
*/
boolean getIsolateSessionState();
}