InWorkspaceServiceServer implements the workspace facing backup services
| 136 | |
| 137 | // InWorkspaceServiceServer implements the workspace facing backup services |
| 138 | type InWorkspaceServiceServer struct { |
| 139 | Uidmapper *Uidmapper |
| 140 | Session *session.Workspace |
| 141 | FSShift api.FSShiftMethod |
| 142 | CGroupMountPoint string |
| 143 | |
| 144 | srv *grpc.Server |
| 145 | sckt io.Closer |
| 146 | |
| 147 | api.UnimplementedInWorkspaceServiceServer |
| 148 | } |
| 149 | |
| 150 | // Start creates the syscall socket the IWS server listens on, and starts the gRPC server on it |
| 151 | func (wbs *InWorkspaceServiceServer) Start() error { |
nothing calls this directly
no outgoing calls
no test coverage detected