(containerID string, cmd []string, timeout time.Duration, _ ...grpc.CallOption)
| 188 | } |
| 189 | |
| 190 | func (r *RuntimeService) ExecSync(containerID string, cmd []string, timeout time.Duration, _ ...grpc.CallOption) ([]byte, []byte, error) { |
| 191 | return r.runtimeService.ExecSync(context.Background(), containerID, cmd, timeout) |
| 192 | } |
| 193 | |
| 194 | func (r *RuntimeService) Exec(req *runtimeapi.ExecRequest, _ ...grpc.CallOption) (*runtimeapi.ExecResponse, error) { |
| 195 | return r.runtimeService.Exec(context.Background(), req) |
no outgoing calls