yuluo-yx opened a new issue, #6080: URL: https://github.com/apache/shenyu/issues/6080
### Question https://github.com/apache/shenyu/blob/master/shenyu-disruptor/src/main/java/org/apache/shenyu/disruptor/consumer/QueueConsumerExecutor.java https://github.com/apache/shenyu/blob/master/shenyu-disruptor/src/main/java/org/apache/shenyu/disruptor/event/DataEvent.java ```java public abstract class QueueConsumerExecutor<T> implements Runnable { private T data; /** * get data. * @return data */ public T getData() { return data; } /** * set data. * @param data data */ public void setData(final T data) { this.data = data; } } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@shenyu.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org