<!--
{
  "availability" : [
    "iOS: 14.0.0 -",
    "iPadOS: 14.0.0 -",
    "macCatalyst: -",
    "macOS: 11.0.0 -",
    "tvOS: 14.0.0 -",
    "visionOS: -",
    "watchOS: 7.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "AppleArchive",
  "identifier" : "/documentation/AppleArchive/ArchiveByteStream/withCompressionStream(appendingTo:flags:threadCount:_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Type Method",
  "symbol" : {
    "kind" : "Type Method",
    "modules" : [
      "Apple Archive",
      "AppleArchive"
    ],
    "preciseIdentifier" : "s:12AppleArchive0B10ByteStreamC015withCompressionD011appendingTo5flags11threadCount_xAC_AA0B5FlagsVSixACKXEtKlFZ"
  },
  "title" : "withCompressionStream(appendingTo:flags:threadCount:_:)"
}
-->

# withCompressionStream(appendingTo:flags:threadCount:_:)

Reopens a compression sequential output stream and calls the given closure.

```
static func withCompressionStream<E>(appendingTo compressedStream: ArchiveByteStream, flags: ArchiveFlags = [], threadCount: Int = 0, _ body: (ArchiveByteStream) throws -> E) throws -> E
```

## Parameters

`compressedStream`

The output stream that the function reopens and receives the compressed data.

`flags`

Flags that control the behavior of the operation.

`threadCount`

The number of worker threads that the operation uses, set to `0` for default.

`body`

A closure with the archive byte stream passed as a parameter.

## Return Value

The result of the closure.

## Discussion

This function opens a stream created by [`compressionStream(appendingTo:flags:threadCount:)`](/documentation/AppleArchive/ArchiveByteStream/compressionStream(appendingTo:flags:threadCount:)), calls the specified closure, and closes the stream.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)