(options?: {
readonly retryTransientErrors?: boolean | undefined
readonly retrySchedule?: Schedule.Schedule<any, Socket.SocketError> | undefined
})
| 1247 | * @category protocol |
| 1248 | */ |
| 1249 | export const layerProtocolSocket = (options?: { |
| 1250 | readonly retryTransientErrors?: boolean | undefined |
| 1251 | readonly retrySchedule?: Schedule.Schedule<any, Socket.SocketError> | undefined |
| 1252 | }): Layer.Layer< |
| 1253 | Protocol, |
| 1254 | never, |
| 1255 | Socket.Socket | RpcSerialization.RpcSerialization |
| 1256 | > => Layer.scoped(Protocol, makeProtocolSocket(options)) |
| 1257 | |
| 1258 | // internal |
| 1259 |
nothing calls this directly
no test coverage detected