abahmanem commented on code in PR #8617:
URL: https://github.com/apache/camel/pull/8617#discussion_r1003409240


##########
components/camel-casper/src/main/java/org/apache/camel/component/casper/CasperComponent.java:
##########
@@ -0,0 +1,44 @@
+package org.apache.camel.component.casper;

Review Comment:
   fixed



##########
components/camel-casper/src/main/java/org/apache/camel/component/casper/CasperConsumer.java:
##########
@@ -0,0 +1,78 @@
+package org.apache.camel.component.casper;
+
+import java.net.URI;
+import java.time.Duration;
+import java.util.concurrent.CountDownLatch;
+
+import org.apache.camel.Processor;
+import org.apache.camel.ShutdownRunningTask;
+import org.apache.camel.Suspendable;
+import org.apache.camel.spi.ShutdownAware;
+import org.apache.camel.support.DefaultConsumer;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import com.launchdarkly.eventsource.EventHandler;
+import com.launchdarkly.eventsource.EventSource;
+
+/**
+ * Camel CasperComsumer Component
+ * 
+ * @author mabahma
+ *
+ */
+
+public class CasperConsumer extends DefaultConsumer implements ShutdownAware, 
Suspendable {
+       public static final Logger logger = 
LoggerFactory.getLogger(CasperConsumer.class);

Review Comment:
   fixed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to