Skip to content

Instantly share code, notes, and snippets.

@v3rm0n
Last active May 17, 2018 12:48
Show Gist options
  • Save v3rm0n/5d643866ad652cbc7f3affa41f96e286 to your computer and use it in GitHub Desktop.
Save v3rm0n/5d643866ad652cbc7f3affa41f96e286 to your computer and use it in GitHub Desktop.
fun MessageChannel.sendMessage(o: Any): Boolean {
return this.send(MessageBuilder.withPayload(o).build())
}
// Usage
val mailMessageChannel // A MessageChannel instance
fun sendEmail(message: Message) {
mailMessageChannel.sendMessage(message)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment