Skip to content

Commit

Permalink
Implementation for Polling mode with clustering support
Browse files Browse the repository at this point in the history
Add dependencies for MSSQL, Oracle and Postgres
  • Loading branch information
RusJaI committed Sep 11, 2023
1 parent ac7671b commit 0f29089
Show file tree
Hide file tree
Showing 14 changed files with 699 additions and 634 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.apache.synapse.inbound.InboundProcessorParams;
import org.apache.synapse.inbound.InboundRequestProcessor;
import org.apache.synapse.inbound.InboundRequestProcessorFactory;
import org.wso2.carbon.inbound.endpoint.protocol.cdc.CDCListener;
import org.wso2.carbon.inbound.endpoint.protocol.cdc.CDCProcessor;
import org.wso2.carbon.inbound.endpoint.protocol.generic.GenericEventBasedConsumer;
import org.wso2.carbon.inbound.endpoint.protocol.generic.GenericEventBasedListener;
import org.wso2.carbon.inbound.endpoint.protocol.generic.GenericInboundListener;
Expand Down Expand Up @@ -99,7 +99,7 @@ public InboundRequestProcessor createInboundProcessor(InboundProcessorParams par
inboundRequestProcessor = new InboundGRPCListener(params);
break;
case cdc:
inboundRequestProcessor = new CDCListener(params);
inboundRequestProcessor = new CDCProcessor(params);
}
} else if (params.getClassImpl() != null) {
if (GenericInboundListener.isListeningInboundEndpoint(params)) {
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0f29089

Please sign in to comment.