Package biopb.tensor
Interface WarmProgressOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WarmProgress,WarmProgress.Builder
public interface WarmProgressOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlongBytes read (recalled) so far.longSum of file sizes in bytes (stat is recall-free), or 0 while enumerating.Basename of the file currently being recalled, or empty.com.google.protobuf.ByteStringBasename of the file currently being recalled, or empty.doubleSeconds elapsed since warming began on the server.intFiles fully read (made resident) so far.intTotal regular files discovered under the source (the recall-free stat pass).Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getFilesTotal
int getFilesTotal()Total regular files discovered under the source (the recall-free stat pass). 0 while still enumerating.
int32 files_total = 1;- Returns:
- The filesTotal.
-
getFilesDone
int getFilesDone()Files fully read (made resident) so far.
int32 files_done = 2;- Returns:
- The filesDone.
-
getBytesTotal
long getBytesTotal()Sum of file sizes in bytes (stat is recall-free), or 0 while enumerating.
int64 bytes_total = 3;- Returns:
- The bytesTotal.
-
getBytesDone
long getBytesDone()Bytes read (recalled) so far.
int64 bytes_done = 4;- Returns:
- The bytesDone.
-
getCurrentName
String getCurrentName()Basename of the file currently being recalled, or empty.
string current_name = 5;- Returns:
- The currentName.
-
getCurrentNameBytes
com.google.protobuf.ByteString getCurrentNameBytes()Basename of the file currently being recalled, or empty.
string current_name = 5;- Returns:
- The bytes for currentName.
-
getElapsedSeconds
double getElapsedSeconds()Seconds elapsed since warming began on the server.
double elapsed_seconds = 6;- Returns:
- The elapsedSeconds.
-