File tree Expand file tree Collapse file tree 3 files changed +21
-20
lines changed Expand file tree Collapse file tree 3 files changed +21
-20
lines changed Original file line number Diff line number Diff line change
1
+ name : Swift
2
+
3
+ on :
4
+ push :
5
+ branches : [ "master", "development" ]
6
+ pull_request :
7
+ branches : [ "master", "development" ]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : macos-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - name : Build
17
+ run : swift build -v
18
+ - name : Run tests
19
+ run : swift test -v
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import Foundation
28
28
/// A class that represents a waiting ack call.
29
29
///
30
30
/// **NOTE**: You should not store this beyond the life of the event handler.
31
- public final class SocketAckEmitter : NSObject {
31
+ public final class SocketAckEmitter : NSObject {
32
32
private unowned let socket : SocketIOClient
33
33
private let ackNum : Int
34
34
@@ -101,7 +101,7 @@ public final class SocketAckEmitter : NSObject {
101
101
/// ...
102
102
/// }
103
103
/// ```
104
- public final class OnAckCallback : NSObject {
104
+ public final class OnAckCallback : NSObject {
105
105
private let ackNumber : Int
106
106
private let binary : Bool
107
107
private let items : [ Any ]
You can’t perform that action at this time.
0 commit comments