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

com.alipay.sofa.jraft.test.atomic.server.LeaderTaskClosure Maven / Gradle / Ivy

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 com.alipay.sofa.jraft.test.atomic.server;

import com.alipay.sofa.jraft.Closure;
import com.alipay.sofa.jraft.Status;

/**
 * Leader closure to apply task.
 * @author boyan ([email protected])
 *
 * 2018-Apr-25 1:35:11 PM
 */
public class LeaderTaskClosure implements Closure {
    private Object      cmd;
    private CommandType cmdType;
    private Closure     done;
    private Object      response;

    @Override
    public void run(Status status) {
        if (this.done != null) {
            done.run(status);
        }
    }

    public Object getResponse() {
        return this.response;
    }

    public void setResponse(Object response) {
        this.response = response;
    }

    public Object getCmd() {
        return this.cmd;
    }

    public void setCmd(Object cmd) {
        this.cmd = cmd;
    }

    public CommandType getCmdType() {
        return this.cmdType;
    }

    public void setCmdType(CommandType cmdType) {
        this.cmdType = cmdType;
    }

    public Closure getDone() {
        return this.done;
    }

    public void setDone(Closure done) {
        this.done = done;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy