Possible Duplicate:
Java, 3 dots in parameters
In jedis the are using the construct String... keys
(this is something new??)
For example this method
jedis.blpop(int timeout, String... keys);
I believe you can use this as both a String as an array. How can I use this in my code(example)?