Package io.hstream.internal
Interface ViewOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
View
,View.Builder
public interface ViewOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCreatedTime()
int64 createdTime = 3;
String
getQueryName()
string queryName = 6;
com.google.protobuf.ByteString
getQueryNameBytes()
string queryName = 6;
String
getSchema(int index)
repeated string schema = 5;
com.google.protobuf.ByteString
getSchemaBytes(int index)
repeated string schema = 5;
int
getSchemaCount()
repeated string schema = 5;
List<String>
getSchemaList()
repeated string schema = 5;
String
getSql()
string sql = 4;
com.google.protobuf.ByteString
getSqlBytes()
string sql = 4;
TaskStatusPB
getStatus()
.hstream.server.TaskStatusPB status = 2;
int
getStatusValue()
.hstream.server.TaskStatusPB status = 2;
String
getViewId()
string viewId = 1;
com.google.protobuf.ByteString
getViewIdBytes()
string viewId = 1;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getViewId
String getViewId()
string viewId = 1;
- Returns:
- The viewId.
-
getViewIdBytes
com.google.protobuf.ByteString getViewIdBytes()
string viewId = 1;
- Returns:
- The bytes for viewId.
-
getStatusValue
int getStatusValue()
.hstream.server.TaskStatusPB status = 2;
- Returns:
- The enum numeric value on the wire for status.
-
getStatus
TaskStatusPB getStatus()
.hstream.server.TaskStatusPB status = 2;
- Returns:
- The status.
-
getCreatedTime
long getCreatedTime()
int64 createdTime = 3;
- Returns:
- The createdTime.
-
getSql
String getSql()
string sql = 4;
- Returns:
- The sql.
-
getSqlBytes
com.google.protobuf.ByteString getSqlBytes()
string sql = 4;
- Returns:
- The bytes for sql.
-
getSchemaList
List<String> getSchemaList()
repeated string schema = 5;
- Returns:
- A list containing the schema.
-
getSchemaCount
int getSchemaCount()
repeated string schema = 5;
- Returns:
- The count of schema.
-
getSchema
String getSchema(int index)
repeated string schema = 5;
- Parameters:
index
- The index of the element to return.- Returns:
- The schema at the given index.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes(int index)
repeated string schema = 5;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the schema at the given index.
-
getQueryName
String getQueryName()
string queryName = 6;
- Returns:
- The queryName.
-
getQueryNameBytes
com.google.protobuf.ByteString getQueryNameBytes()
string queryName = 6;
- Returns:
- The bytes for queryName.
-
-