Interface LogSubscriptionRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LogSubscriptionRequest
,LogSubscriptionRequest.Builder
public interface LogSubscriptionRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlong
Ticket console_id = 1; If a non-zero value is specified, represents the timestamp in microseconds since the unix epoch when the client last saw a message.getLevels
(int index) repeated string levels = 2;
com.google.protobuf.ByteString
getLevelsBytes
(int index) repeated string levels = 2;
int
repeated string levels = 2;
repeated string levels = 2;
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getLastSeenLogTimestamp
long getLastSeenLogTimestamp()Ticket console_id = 1; If a non-zero value is specified, represents the timestamp in microseconds since the unix epoch when the client last saw a message. Technically this might skip messages if more than one message was logged at the same microsecond that connection was lost - to avoid this, subtract one from the last seen message's micros, and expect to receive some messages that have already been seen.
int64 last_seen_log_timestamp = 1 [jstype = JS_STRING];
- Returns:
- The lastSeenLogTimestamp.
-
getLevelsList
repeated string levels = 2;
- Returns:
- A list containing the levels.
-
getLevelsCount
int getLevelsCount()repeated string levels = 2;
- Returns:
- The count of levels.
-
getLevels
repeated string levels = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The levels at the given index.
-
getLevelsBytes
com.google.protobuf.ByteString getLevelsBytes(int index) repeated string levels = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the levels at the given index.
-