Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
java
java
public class SomeTime implements Runnable  {

   @Producer
   protected Channel channel;

   public void run() {
      Event event = ...
      channel.publish(event);
   }
}

...