Package com.google.cloud.bigquery
Class StandardTableDefinition.StreamingBuffer
- java.lang.Object
-
- com.google.cloud.bigquery.StandardTableDefinition.StreamingBuffer
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- StandardTableDefinition
public static class StandardTableDefinition.StreamingBuffer extends Object implements Serializable
Google BigQuery Table's Streaming Buffer information. This class contains information on a table's streaming buffer as the estimated size in number of rows/bytes.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)LonggetEstimatedBytes()Returns a lower-bound estimate of the number of bytes currently in the streaming buffer.LonggetEstimatedRows()Returns a lower-bound estimate of the number of rows currently in the streaming buffer.LonggetOldestEntryTime()Returns the timestamp of the oldest entry in the streaming buffer, in milliseconds since epoch.inthashCode()StringtoString()
-
-
-
Method Detail
-
getEstimatedRows
public Long getEstimatedRows()
Returns a lower-bound estimate of the number of rows currently in the streaming buffer.
-
getEstimatedBytes
public Long getEstimatedBytes()
Returns a lower-bound estimate of the number of bytes currently in the streaming buffer.
-
getOldestEntryTime
public Long getOldestEntryTime()
Returns the timestamp of the oldest entry in the streaming buffer, in milliseconds since epoch. Returnsnullif the streaming buffer is empty.
-
-