You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MessageProcessor.kt 312B

1234567891011121314151617
  1. package com.dmdirc.ktirc.messages
  2. import com.dmdirc.ktirc.io.IrcMessage
  3. interface MessageProcessor {
  4. /**
  5. * The messages which this handler can process.
  6. */
  7. val commands: Array<String>
  8. /**
  9. * Processes the given message.
  10. */
  11. fun process(message: IrcMessage)
  12. }