We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1c9d8 commit 13551acCopy full SHA for 13551ac
1 file changed
Sources/ATCommonTools/Swift-bound/DuplexStream.swift
@@ -137,15 +137,15 @@ public actor DuplexStreamEndpoint: DuplexStream {
137
public final class DuplexStreamPair: Sendable {
138
139
/// The first endpoint in the duplex stream pair.
140
- let endpointA: DuplexStreamEndpoint
+ public let endpointA: DuplexStreamEndpoint
141
142
/// The second endpoint in the duplex stream pair.
143
- let endpointB: DuplexStreamEndpoint
+ public let endpointB: DuplexStreamEndpoint
144
145
/// Initializes the duplex stream pair, connecting both endpoints.
146
///
147
/// The endpoints are automatically paired together.
148
- init() async {
+ public init() async {
149
endpointA = DuplexStreamEndpoint()
150
endpointB = DuplexStreamEndpoint()
151
0 commit comments