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

com.github.yuyenews.concurrent.pac.TaskData Maven / Gradle / Ivy

The newest version!
package com.github.yuyenews.concurrent.pac;

/**
 * 任务对象
 */
public class TaskData {

    /**
     * 生产者ID
     */
    private String producerId;

    /**
     * 需要被消费者处理的任务数据
     */
    private Object data;

    public TaskData(String producerId, Object data){
        this.producerId = producerId;
        this.data = data;
    }

    public String getProducerId() {
        return producerId;
    }

    public void setProducerId(String producerId) {
        this.producerId = producerId;
    }

    public Object getData() {
        return data;
    }

    public void setData(Object data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy