- Notifications
You must be signed in to change notification settings - Fork136
Open
Milestone
Description
StreamWriter's complete docs are
/// Chunk provider. public struct StreamWriter { /// Write data to server. /// /// - parameters: /// - data: `IOData` to write. public func write(_ data: IOData) -> EventLoopFuture<Void> }I understand how I can provide chunks: by callingwrite but how do I tell theStreamWriter that I'm done sending request body bytes?