820f9c93670f64ac680b7abaa2d62006f110c601.svn-base 183 B

12345678910
  1. package org.jeecg.boot.starter.rabbitmq.listenter;
  2. import com.rabbitmq.client.Channel;
  3. public interface MqListener<T> {
  4. default void handler(T map, Channel channel) {
  5. }
  6. }