Skip to content

Commit

Permalink
upgrade version v4.1.0 and remove useless implement method
Browse files Browse the repository at this point in the history
  • Loading branch information
baisui1981 committed Oct 24, 2024
1 parent 15c3e74 commit 260b328
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,13 @@
<dependencyManagement>
<dependencies>

<!-- 高版本 JDK 移除了 JavaEE 的包,需要手动引入 -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>

<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.qlangtech.tis.async.message.client.consumer;

Expand All @@ -30,9 +30,9 @@
*/
public interface IMQListener<FLINK_RESULT> {

String getTopic();

void setDeserialize(IAsyncMsgDeserialize deserialize);
// String getTopic();
//
// void setDeserialize(IAsyncMsgDeserialize deserialize);

IConsumerHandle getConsumerHandle();

Expand Down

0 comments on commit 260b328

Please sign in to comment.