...

Text file src/github.com/Microsoft/hcsshim/internal/extendedtask/extendedtask.proto

Documentation: github.com/Microsoft/hcsshim/internal/extendedtask

     1syntax = "proto3";
     2
     3option go_package = "github.com/Microsoft/hcsshim/internal/extendedtask;extendedtask";
     4
     5import weak "gogoproto/gogo.proto";
     6
     7service ExtendedTask {
     8    rpc ComputeProcessorInfo(ComputeProcessorInfoRequest) returns (ComputeProcessorInfoResponse);
     9}
    10
    11message ComputeProcessorInfoRequest {
    12    string id = 1;  
    13}
    14
    15message ComputeProcessorInfoResponse {
    16    int32 count = 1; 
    17}

View as plain text