syntax = "proto2"; package rst.timing; option java_outer_classname = "DurationType"; /** * Holds a time duration in microseconds. * * @author Arne Nordmann */ // @create_collection message Duration { // @unit(microsecond) required uint64 time = 1; }