All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.eureka2.server.transport.tcp.replication.TcpReplicationHandler Maven / Gradle / Ivy

There is a newer version: 2.0.0-DP4
Show newest version
/*
 * Copyright 2014 Netflix, Inc.
 *
 * Licensed 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 com.netflix.eureka2.server.transport.tcp.replication;

import com.google.inject.Inject;
import com.netflix.eureka2.registry.InstanceInfo;
import com.netflix.eureka2.server.metric.EurekaServerMetricFactory;
import com.netflix.eureka2.server.registry.EurekaServerRegistry;
import com.netflix.eureka2.server.registry.EvictionQueue;
import com.netflix.eureka2.server.service.EurekaServerService;
import com.netflix.eureka2.server.service.EurekaServiceImpl;
import com.netflix.eureka2.transport.MessageConnection;
import com.netflix.eureka2.transport.base.BaseMessageConnection;
import com.netflix.eureka2.transport.base.HeartBeatConnection;
import io.reactivex.netty.channel.ConnectionHandler;
import io.reactivex.netty.channel.ObservableConnection;
import rx.Observable;
import rx.schedulers.Schedulers;

/**
 * @author Tomasz Bak
 */
public class TcpReplicationHandler implements ConnectionHandler {

    private final EurekaServerRegistry registry;
    private final EvictionQueue evictionQueue;
    private final EurekaServerMetricFactory metricFactory;

    @Inject
    public TcpReplicationHandler(EurekaServerRegistry registry, EvictionQueue evictionQueue, EurekaServerMetricFactory metricFactory) {
        this.registry = registry;
        this.evictionQueue = evictionQueue;
        this.metricFactory = metricFactory;
    }

    @Override
    public Observable handle(ObservableConnection connection) {
        MessageConnection broker = new HeartBeatConnection(
                new BaseMessageConnection("replication", connection, metricFactory.getReplicationConnectionMetrics()),
                30000, 3,
                Schedulers.computation()
        );
        final EurekaServerService service = new EurekaServiceImpl(registry, evictionQueue, broker, metricFactory);
        return service.newReplicationChannel().asLifecycleObservable();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy