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

com.github.lontime.extredisson.rpc.common.SingleReplyAsyncOutput Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.github.lontime.extredisson.rpc.common;

import java.util.concurrent.CompletableFuture;

import com.github.lontime.base.commonj.result.ProcessResult;
import lombok.Getter;
import lombok.Setter;

/**
 * SingleReplyAsyncOutput.
 * @author lontime
 * @since 1.0
 */
@Getter
@Setter
public class SingleReplyAsyncOutput {

    private String id;

    private ProcessResult result;

    private REQ request;

    private CompletableFuture response;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy