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

com.avanza.astrix.gs.remoting.GsRemotingTransport Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
/*
 * Copyright 2014 Avanza Bank AB
 *
 * 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.avanza.astrix.gs.remoting;

import java.util.Collection;
import java.util.Collections;
import java.util.List;

import com.avanza.astrix.core.remoting.RoutingKey;
import com.avanza.astrix.gs.SpaceTaskDispatcher;
import com.avanza.astrix.remoting.client.AstrixServiceInvocationRequest;
import com.avanza.astrix.remoting.client.AstrixServiceInvocationResponse;
import com.avanza.astrix.remoting.client.RemotingTransportSpi;
import com.avanza.astrix.remoting.client.RoutedServiceInvocationRequest;
import com.avanza.astrix.remoting.util.GsUtil;
import com.gigaspaces.async.AsyncResult;

import rx.Observable;
import rx.functions.Func1;
/**
 * RemotingTransport implementation based on GigaSpaces task execution. 

* * @author Elias Lindholm * */ public class GsRemotingTransport implements RemotingTransportSpi { private final SpaceTaskDispatcher spaceTaskDispatcher; public GsRemotingTransport(SpaceTaskDispatcher spaceTaskDispatcher) { this.spaceTaskDispatcher = spaceTaskDispatcher; } @Override public Observable submitRoutedRequest(final AstrixServiceInvocationRequest request, final RoutingKey routingKey) { return observeRoutedRequest(request, routingKey); } @Override public Observable> submitRoutedRequests(final Collection requests) { if (requests.isEmpty()) { return Observable.just(Collections.emptyList()); } return observeRoutedReqeuests(requests); } @Override public Observable> submitBroadcastRequest(final AstrixServiceInvocationRequest request) { return observeBroadcastRequest(request); } private Observable observeRoutedRequest(AstrixServiceInvocationRequest request, RoutingKey routingKey) { return spaceTaskDispatcher.observe(new AstrixServiceInvocationTask(request), routingKey); } private Observable> observeRoutedReqeuests(Collection requests) { Observable result = Observable.empty(); for (RoutedServiceInvocationRequest request : requests) { result = result.mergeWith(spaceTaskDispatcher.observe(new AstrixServiceInvocationTask(request.getRequest()), request.getRoutingkey())); } return result.toList(); } private Observable> observeBroadcastRequest(AstrixServiceInvocationRequest request) { Observable>> responses = spaceTaskDispatcher.observe(new AstrixDistributedServiceInvocationTask(request)); Func1>, Observable> listToObservable = GsUtil.asyncResultListToObservable(); Observable responseStream = responses.flatMap(listToObservable); return responseStream.toList(); } @Override public int partitionCount() { return this.spaceTaskDispatcher.partitionCount(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy