unsafeWriteableOnClose : HasIO io => a -> IO () -> io ()unsafeWriteableOnDrain : HasIO io => a -> IO () -> io ()unsafeWriteableOnError : HasIO io => a -> (e -> IO ()) -> io ()unsafeWriteableOnFinish : HasIO io => a -> IO () -> io ()unsafeWriteableOnPipe : HasIO io => ReadableClass d e r => a -> (r -> IO ()) -> io ()unsafeWriteableOnUnpipe : HasIO io => ReadableClass d e r => a -> (r -> IO ()) -> io ()unsafeWriteableCork : HasIO io => a -> io ()unsafeWriteableEnd : HasIO io => a -> IO () -> io ()unsafeWriteableWrite : HasIO io => a -> b -> IO () -> io ()unsafeWriteableUncork : HasIO io => a -> io ()interface WriteableClass : Type -> Type -> Type -> TypeWritable stream
.onClose : HasIO io => w -> IO () -> io ().onDrain : HasIO io => w -> IO () -> io ().onError : HasIO io => w -> (e -> IO ()) -> io ().onFinish : HasIO io => w -> IO () -> io ().onPipe : HasIO io => ReadableClass d e r => w -> (r -> IO ()) -> io ().onUnpipe : HasIO io => ReadableClass d e r => w -> (r -> IO ()) -> io ().cork : HasIO io => w -> io ().end : HasIO io => w -> Maybe (IO ()) -> io ().write : HasIO io => w -> d -> Maybe (IO ()) -> io ().uncork : HasIO io => w -> io ()WriteableClass d Error StdErrWriteableClass d Error StdOutWriteableClass d Error (Socket t)WriteableClass Buffer Error ClientHttp2StreamWriteableClass Buffer Error ServerHttp2StreamWriteableClass Buffer Error ServerResponseWriteableClass Buffer Error ClientRequest.onClose : WriteableClass d e w => HasIO io => w -> IO () -> io ().onDrain : WriteableClass d e w => HasIO io => w -> IO () -> io ().onError : WriteableClass d e w => HasIO io => w -> (e -> IO ()) -> io ().onFinish : WriteableClass d e w => HasIO io => w -> IO () -> io ().onPipe : WriteableClass d e w => HasIO io => ReadableClass d e r => w -> (r -> IO ()) -> io ().onUnpipe : WriteableClass d e w => HasIO io => ReadableClass d e r => w -> (r -> IO ()) -> io ().cork : WriteableClass d e w => HasIO io => w -> io ().end : WriteableClass d e w => HasIO io => w -> Maybe (IO ()) -> io ().write : WriteableClass d e w => HasIO io => w -> d -> Maybe (IO ()) -> io ().uncork : WriteableClass d e w => HasIO io => w -> io ()