Also actually type case object if you want a case object

This commit is contained in:
Ivan Porto Carrero 2012-01-16 00:47:30 +01:00
parent a2c397d9aa
commit d08d92246b

View file

@ -18,9 +18,9 @@ private[zeromq] class ConcurrentSocketActor(params: SocketParameters) extends Ac
private val noBytes = Array[Byte]()
private val socket: Socket = params.context.socket(params.socketType)
private val poller: Poller = params.context.poller
private object Poll
private object ReceiveFrames
private object ClearPoll
private case object Poll
private case object ReceiveFrames
private case object ClearPoll
private case class PollError(ex: Throwable)
private def handleConnectionMessages: Receive = {