AsyncFileServer is a URPC handler that serves files to a stateipc client.
| 31 | |
| 32 | // AsyncFileServer is a URPC handler that serves files to a stateipc client. |
| 33 | type AsyncFileServer struct { |
| 34 | // asyncFileServer is the underlying implementation. Some methods are |
| 35 | // defined on asyncFileServer rather than AsyncFileServer, since |
| 36 | // urpc.Server.Register disallows non-RPC methods (including unexported |
| 37 | // methods) on handlers. |
| 38 | asyncFileServer |
| 39 | } |
| 40 | |
| 41 | type asyncFileServer struct { |
| 42 | filesMu sync.Mutex |
nothing calls this directly
no outgoing calls
no test coverage detected