Noted potential FIXMEs
authorChristos KK Loverdos <loverdos@gmail.com>
Thu, 19 Apr 2012 13:05:25 +0000 (16:05 +0300)
committerChristos KK Loverdos <loverdos@gmail.com>
Thu, 19 Apr 2012 13:05:25 +0000 (16:05 +0300)
src/main/scala/gr/grnet/aquarium/service/EventProcessorService.scala

index 6498256..2639ee7 100644 (file)
@@ -76,12 +76,19 @@ abstract class EventProcessorService[E <: AquariumEvent] extends AkkaAMQP with L
 
   case class Duplicate(ackData: AckData)
 
-  /* Short term storage for delivery tags to work around AMQP
+  /**
+   * Short term storage for delivery tags to work around AMQP
    * limitation with redelivering rejected messages to same host.
+   *
+   * FIXME: Grow unbounded???
    */
   private val redeliveries = new ConcurrentSkipListSet[String]()
 
-  /* Temporarily keeps track of messages while being processed */
+  /**
+   *  Temporarily keeps track of messages while being processed
+   *
+   *  FIXME: Grow unbounded???
+   */
   private val inFlightEvents = new ConcurrentHashMap[Long, E](200, 0.9F, 4)
 
   /* Supervisor actor for each event processing operation */