java.io.deephaven.proto.backplane.grpc.StreamRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/object.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface StreamRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.StreamRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Indicates that this is the first request of the stream, asking to connect to
* a specific object on the server.
*
*
* .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1;
* @return Whether the connect field is set.
*/
boolean hasConnect();
/**
*
* Indicates that this is the first request of the stream, asking to connect to
* a specific object on the server.
*
*
* .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1;
* @return The connect.
*/
io.deephaven.proto.backplane.grpc.ConnectRequest getConnect();
/**
*
* Indicates that this is the first request of the stream, asking to connect to
* a specific object on the server.
*
*
* .io.deephaven.proto.backplane.grpc.ConnectRequest connect = 1;
*/
io.deephaven.proto.backplane.grpc.ConnectRequestOrBuilder getConnectOrBuilder();
/**
*
* Data to pass to the object on the server.
*
*
* .io.deephaven.proto.backplane.grpc.ClientData data = 2;
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
* Data to pass to the object on the server.
*
*
* .io.deephaven.proto.backplane.grpc.ClientData data = 2;
* @return The data.
*/
io.deephaven.proto.backplane.grpc.ClientData getData();
/**
*
* Data to pass to the object on the server.
*
*
* .io.deephaven.proto.backplane.grpc.ClientData data = 2;
*/
io.deephaven.proto.backplane.grpc.ClientDataOrBuilder getDataOrBuilder();
io.deephaven.proto.backplane.grpc.StreamRequest.MessageCase getMessageCase();
}