Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
60d61cb7
Commit
60d61cb7
authored
Aug 16, 2022
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
升级新版本
parent
4c9d0e96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
MqService.java
...q/src/main/java/com/yanzuoguang/mq/service/MqService.java
+18
-6
No files found.
yzg-util-mq/src/main/java/com/yanzuoguang/mq/service/MqService.java
View file @
60d61cb7
...
@@ -68,8 +68,11 @@ public interface MqService {
...
@@ -68,8 +68,11 @@ public interface MqService {
/**
/**
* 消息收到确认
* 消息收到确认
*
*
* @param message 收到的消息
* @param messageBody 消息体
* @param channel 收到的通道
* @param channel 收到的通道
* @param exchangeNameAndRouteKey 出错时重发的路由
* @param message 消息内容
* @param consumerMessage 消费者,具体业务处理函数
*/
*/
@ApiOperation
(
value
=
"消息收到确认"
)
@ApiOperation
(
value
=
"消息收到确认"
)
void
basicHandle
(
Message
messageBody
,
Channel
channel
,
String
exchangeNameAndRouteKey
,
String
message
,
Consumer
<
String
>
consumerMessage
);
void
basicHandle
(
Message
messageBody
,
Channel
channel
,
String
exchangeNameAndRouteKey
,
String
message
,
Consumer
<
String
>
consumerMessage
);
...
@@ -78,8 +81,12 @@ public interface MqService {
...
@@ -78,8 +81,12 @@ public interface MqService {
/**
/**
* 消息收到确认
* 消息收到确认
*
*
* @param message 收到的消息
* @param messageBody 消息体
* @param channel 收到的通道
* @param channel 收到的通道
* @param exchangeNameAndRouteKey 出错时重发的路由
* @param message 消息内容
* @param dedTime 消息延迟处理时间
* @param consumerMessage 消费者,具体业务处理函数
*/
*/
@ApiOperation
(
value
=
"消息收到确认"
)
@ApiOperation
(
value
=
"消息收到确认"
)
void
basicHandle
(
Message
messageBody
,
Channel
channel
,
String
exchangeNameAndRouteKey
,
String
message
,
long
dedTime
,
Consumer
<
String
>
consumerMessage
);
void
basicHandle
(
Message
messageBody
,
Channel
channel
,
String
exchangeNameAndRouteKey
,
String
message
,
long
dedTime
,
Consumer
<
String
>
consumerMessage
);
...
@@ -87,8 +94,13 @@ public interface MqService {
...
@@ -87,8 +94,13 @@ public interface MqService {
/**
/**
* 消息收到确认
* 消息收到确认
*
*
* @param message 收到的消息
* @param messageBody 消息体
* @param channel 收到的通道
* @param channel 收到的通道
* @param exchangeName 出错时重发的交换器
* @param routeKey 出错时重发的路由
* @param message 消息内容
* @param dedTime 消息延迟处理时间
* @param consumerMessage 消费者,具体业务处理函数
*/
*/
@ApiOperation
(
value
=
"消息收到确认"
)
@ApiOperation
(
value
=
"消息收到确认"
)
void
basicHandle
(
Message
messageBody
,
Channel
channel
,
String
exchangeName
,
String
routeKey
,
String
message
,
long
dedTime
,
Consumer
<
String
>
consumerMessage
);
void
basicHandle
(
Message
messageBody
,
Channel
channel
,
String
exchangeName
,
String
routeKey
,
String
message
,
long
dedTime
,
Consumer
<
String
>
consumerMessage
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment