com.delphix.session.module.rmi.RmiTestConnector.java Source code

Java tutorial

Introduction

Here is the source code for com.delphix.session.module.rmi.RmiTestConnector.java

Source

/**
 * 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.
 */

/**
 * Copyright (c) 2014 by Delphix. All rights reserved.
 */

package com.delphix.session.module.rmi;

import com.delphix.session.service.ClientManager;
import com.delphix.session.util.AbstractConnector;
import com.delphix.session.util.TaggedRequestExecutor;
import org.springframework.beans.factory.annotation.Autowired;

import java.util.UUID;
import java.util.concurrent.ExecutorService;

public class RmiTestConnector extends AbstractConnector {
    public RmiTestConnector() {
        super(RmiTestServiceType.getInstance(), RmiTestExchangeType.class, UUID.randomUUID(), "rmi test");
    }

    @Autowired
    public void setClientManager(ClientManager manager) {
        this.manager = manager;
    }

    @Override
    protected ExecutorService getProtocolExecutor() {
        return new TaggedRequestExecutor();
    }
}