Skip to content

Commit f20e9a6

Browse files
committed
update
1 parent 40f2baf commit f20e9a6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Sources/async-http-client/protocol/code/IReader.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import Foundation
88

99
/// Processes data fetched from a remote source
10-
public protocol IReader: Sendable {
10+
public protocol IReader {
1111

1212
/// Parses data loaded from remote source
1313
/// - Parameter data: set of data

Sources/async-http-client/protocol/code/IWriter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import Foundation
88

99
/// Processes data fetched from a remote source
10-
public protocol IWriter: Sendable {
10+
public protocol IWriter {
1111

1212
/// Parses data loaded from remote source
1313
/// - Parameter data: set of data

Sources/async-http-client/proxy/http/Http.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
import Foundation
99

10-
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
1110
/// Name space for http async client
11+
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
1212
public struct Http{
1313

1414

Sources/async-http-client/reader/JsonReader.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Foundation
88

99
/// An object that decodes instances of a data type from JSON objects
1010
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
11-
public struct JsonReader: IReader {
11+
public struct JsonReader: IReader, Sendable {
1212

1313
// MARK: - Life circle
1414

Sources/async-http-client/writer/JsonWriter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010

1111
/// An object that encodes instances of a data type as JSON objects
1212
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
13-
public struct JsonWriter: IWriter{
13+
public struct JsonWriter: IWriter, Sendable{
1414

1515
// MARK: - Life circle
1616

0 commit comments

Comments
 (0)