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 boolean
equals(Object obj)
Long
getEstimatedBytes()
Returns a lower-bound estimate of the number of bytes currently in the streaming buffer.Long
getEstimatedRows()
Returns a lower-bound estimate of the number of rows currently in the streaming buffer.Long
getOldestEntryTime()
Returns the timestamp of the oldest entry in the streaming buffer, in milliseconds since epoch.int
hashCode()
String
toString()
-
-
-
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. Returnsnull
if the streaming buffer is empty.
-
-