DpiInterfaceServer is the server API for DpiInterface service. All implementations must embed UnimplementedDpiInterfaceServer for forward compatibility
| 83 | // All implementations must embed UnimplementedDpiInterfaceServer |
| 84 | // for forward compatibility |
| 85 | type DpiInterfaceServer interface { |
| 86 | AddDeployment(context.Context, *ServiceInfo) (*DeploymentUpdateSuccess, error) |
| 87 | DeleteDeployment(context.Context, *ServiceInfo) (*DeploymentUpdateSuccess, error) |
| 88 | UpdateEndpointList(context.Context, *DeploymentEndpointPatch) (*DeploymentUpdateSuccess, error) |
| 89 | DrainSandbox(context.Context, *DeploymentEndpointPatch) (*DeploymentUpdateSuccess, error) |
| 90 | ResetMeasurements(context.Context, *emptypb.Empty) (*ActionStatus, error) |
| 91 | mustEmbedUnimplementedDpiInterfaceServer() |
| 92 | } |
| 93 | |
| 94 | // UnimplementedDpiInterfaceServer must be embedded to have forward compatible implementations. |
| 95 | type UnimplementedDpiInterfaceServer struct { |
nothing calls this directly
no outgoing calls
no test coverage detected