org.apache.camel.component.hazelcast.instance.HazelcastInstanceConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-hazelcast Show documentation
Show all versions of camel-hazelcast Show documentation
Camel HazelCast based work queue implementation
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.hazelcast.instance;
import java.net.InetSocketAddress;
import com.hazelcast.cluster.MembershipEvent;
import com.hazelcast.cluster.MembershipListener;
import com.hazelcast.core.HazelcastInstance;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.component.hazelcast.HazelcastComponentHelper;
import org.apache.camel.component.hazelcast.HazelcastConstants;
import org.apache.camel.support.DefaultConsumer;
import org.apache.camel.support.DefaultEndpoint;
public class HazelcastInstanceConsumer extends DefaultConsumer {
public HazelcastInstanceConsumer(HazelcastInstance hazelcastInstance, DefaultEndpoint endpoint, Processor processor) {
super(endpoint, processor);
hazelcastInstance.getCluster().addMembershipListener(new HazelcastMembershipListener());
}
class HazelcastMembershipListener implements MembershipListener {
@Override
public void memberAdded(MembershipEvent event) {
this.sendExchange(event, HazelcastConstants.ADDED);
}
@Override
public void memberRemoved(MembershipEvent event) {
this.sendExchange(event, HazelcastConstants.REMOVED);
}
private void sendExchange(MembershipEvent event, String action) {
Exchange exchange = createExchange(false);
HazelcastComponentHelper.setListenerHeaders(exchange, HazelcastConstants.INSTANCE_LISTENER, action);
// instance listener header values
InetSocketAddress adr = event.getMember().getSocketAddress();
if (adr != null) {
exchange.getIn().setHeader(HazelcastConstants.INSTANCE_HOST, adr.getHostName());
exchange.getIn().setHeader(HazelcastConstants.INSTANCE_PORT, adr.getPort());
}
try {
getProcessor().process(exchange);
} catch (Exception e) {
exchange.setException(e);
}
if (exchange.getException() != null) {
getExceptionHandler().handleException(
"Error processing exchange for Hazelcast consumer on your Hazelcast cluster.", exchange,
exchange.getException());
}
releaseExchange(exchange, false);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy