Created
February 4, 2020 15:37
-
-
Save Yerazhas/1f3cf7f8669eccfb70d9dbe91a48c770 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| protocol CFMessagesSocket: class { | |
| var delegate: CFSocketClientDelegate? { get set } | |
| func connect() | |
| func disconnect() | |
| func sendMessage(message: String) | |
| func sendMessage(data: Data) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment