1syntax = "proto3"; 2 3package tensorflow; 4option cc_enable_arenas = true; 5option java_outer_classname = "ReaderBaseProtos"; 6option java_multiple_files = true; 7option java_package = "org.tensorflow.framework"; 8option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/framework"; 9 10// For serializing and restoring the state of ReaderBase, see 11// reader_base.h for details. 12message ReaderBaseState { 13 int64 work_started = 1; 14 int64 work_finished = 2; 15 int64 num_records_produced = 3; 16 bytes current_work = 4; 17}; 18