I am attempting to print out ~5-10 lines into the channel, ideally all at once. Right now it takes about a half second per message with that method.
Is there a way I can speed this up?
Kyle Kemp
unread,
Jan 25, 2013, 1:11:54 PM1/25/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pirc...@googlegroups.com
You can use setMessageDelay() before you send the messages to speed up the sending, and then just change the value back when you're done. Be careful - too many lines and you flood out of IRC.
Kyle
Leon Blakey
unread,
Jan 25, 2013, 5:19:03 PM1/25/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pirc...@googlegroups.com
The other option is sendRawLineNow. Unfortunately you have to pass the full raw IRC line, but you can bypass the outgoing message queue.