Skip to content

Commit

Permalink
Merge the conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
YYYYWD committed Oct 8, 2022
1 parent 84cf866 commit 881a6b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@

import org.apache.rocketmq.mqtt.cs.protocol.mqtt.facotry.MqttMessageFactory;

import org.apache.rocketmq.mqtt.cs.session.Session;
import org.apache.rocketmq.mqtt.cs.session.infly.PushAction;
import org.apache.rocketmq.mqtt.cs.session.loop.SessionLoop;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -53,7 +55,6 @@
import java.util.concurrent.TimeUnit;



@Component
public class MqttSubscribeHandler implements MqttPacketHandler<MqttSubscribeMessage> {
private static Logger logger = LoggerFactory.getLogger(MqttSubscribeHandler.class);
Expand All @@ -64,17 +65,11 @@ public class MqttSubscribeHandler implements MqttPacketHandler<MqttSubscribeMess
@Resource
private ChannelManager channelManager;


@Resource
private RetainedPersistManager retainedPersistManager;

@Resource
private PushAction pushAction;
@Resource
private RetryDriver retryDriver;

@Resource
private MqttMsgId mqttMsgId;

private ScheduledThreadPoolExecutor scheduler = new ScheduledThreadPoolExecutor(1, new ThreadFactoryImpl("check_subscribe_future"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.apache.rocketmq.mqtt.common.model.Message;
import org.apache.rocketmq.mqtt.common.model.Queue;
import org.apache.rocketmq.mqtt.common.model.Subscription;
import org.apache.rocketmq.mqtt.common.util.MessageUtil;
import org.apache.rocketmq.mqtt.common.util.TopicUtils;
import org.apache.rocketmq.mqtt.cs.channel.ChannelInfo;
import org.apache.rocketmq.mqtt.cs.config.ConnectConf;
Expand Down

0 comments on commit 881a6b6

Please sign in to comment.