Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mischa-hildebrand/a5582982be0194502d32f550f2748a58 to your computer and use it in GitHub Desktop.
Save mischa-hildebrand/a5582982be0194502d32f550f2748a58 to your computer and use it in GitHub Desktop.
Send Messages
func send(_ message: Message) {
guard let data = try? JSONEncoder().encode(message) else {
// Handle error
return
}
webSocket?.write(data: data)
add(message, direction: .sent)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment