DocSpace-buildtools/common/ASC.Common/protos/DistributedTaskCache.proto

21 lines
408 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package ASC.Common.Threading;
message DistributedTaskCache {
string Id = 1;
2020-11-24 10:15:11 +00:00
int32 InstanceId = 2;
string Status = 3;
string Exception = 4;
repeated DistributedTaskCacheProp Props = 5;
2019-10-14 08:23:45 +00:00
string Key = 6;
2020-09-30 10:54:49 +00:00
double Percentage = 7;
bool IsCompleted = 8;
int32 StepCount = 9;
message DistributedTaskCacheProp
{
string Key = 1;
string Value = 2;
}
}