This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* User: Jason Klassen | |
*/ | |
package extensions { | |
import actors.threadpool.LinkedBlockingQueue | |
object LinkedBlockingQueueExtensions { | |
implicit def linkedBlockingQueueExt[A](source: LinkedBlockingQueue[A]) = new LinkedBlockingQueueExt[A](source) |