This commit is contained in:
Erik 2015-08-14 22:08:33 -04:00
parent 2cafec6f12
commit f752507a11
2 changed files with 6 additions and 6 deletions

View File

@ -237,14 +237,14 @@ public final class SocketIOClient: NSObject, SocketEngineClient, SocketLogClient
/** /**
Send a message to the server Send a message to the server
*/ */
public func emit(event:String, _ items:AnyObject...) { public func emit(event: String, _ items: AnyObject...) {
emit(event, withItems: items) emit(event, withItems: items)
} }
/** /**
Same as emit, but meant for Objective-C Same as emit, but meant for Objective-C
*/ */
public func emit(event:String, withItems items:[AnyObject]) { public func emit(event: String, withItems items: [AnyObject]) {
guard status == SocketIOClientStatus.Connected else { guard status == SocketIOClientStatus.Connected else {
return return
} }
@ -258,18 +258,18 @@ public final class SocketIOClient: NSObject, SocketEngineClient, SocketLogClient
Sends a message to the server, requesting an ack. Use the onAck method of SocketAckHandler to add Sends a message to the server, requesting an ack. Use the onAck method of SocketAckHandler to add
an ack. an ack.
*/ */
public func emitWithAck(event:String, _ items:AnyObject...) -> OnAckCallback { public func emitWithAck(event: String, _ items: AnyObject...) -> OnAckCallback {
return createOnAck(event, items: items) return createOnAck(event, items: items)
} }
/** /**
Same as emitWithAck, but for Objective-C Same as emitWithAck, but for Objective-C
*/ */
public func emitWithAck(event:String, withItems items:[AnyObject]) -> OnAckCallback { public func emitWithAck(event: String, withItems items: [AnyObject]) -> OnAckCallback {
return createOnAck(event, items: items) return createOnAck(event, items: items)
} }
private func _emit(event:String, _ args:[AnyObject], ack:Int? = nil) { private func _emit(event: String, _ args: [AnyObject], ack: Int? = nil) {
guard status == SocketIOClientStatus.Connected else { guard status == SocketIOClientStatus.Connected else {
return return
} }

View File

@ -28,7 +28,7 @@ import Foundation
public var description: String { public var description: String {
let des: String let des: String
switch self.rawValue { switch rawValue {
case 0: case 0:
des = "Not Connected" des = "Not Connected"
case 1: case 1: