yhjlsy123 opened a new issue, #15796:
URL: https://github.com/apache/pulsar/issues/15796

   **Describe the bug**
   A clear and concise description of what the bug is.
    Consumer<byte[]> consumerCreated = client.newConsumer()
                       .topic("bootTopic", "topic2")
                       .subscriptionName("pulsar")
                       .subscriptionType(SubscriptionType.Shared)
                       
.subscriptionInitialPosition(SubscriptionInitialPosition.Latest)
                       .receiverQueueSize(100)
                       .negativeAckRedeliveryDelay(60, TimeUnit.SECONDS)
                       .messageListener(new MessageListener<byte[]>() {
                           @Override
                           public void received(Consumer<byte[]> consumer, 
Message<byte[]> msg) {
                               Log.i("pulsar", new String(msg.getData()));
                               try {
                                   consumer.acknowledge(msg.getMessageId());
                               } catch (PulsarClientException e) {
                                   e.printStackTrace();
                                   
consumer.negativeAcknowledge(msg.getMessageId());
                               }
                           }
                       })
                       .subscribe();
   messageLitenner 无回到消息发布以后
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Go to '...'
   2. Click on '....'
   3. Scroll down to '....'
   4. See error
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Screenshots**
   If applicable, add screenshots to help explain your problem.
   2022-05-26 10:33:00.536 2869-2921/com.xy.as.smartfllowup E/as.smartfllowu: 
No implementation found for int 
   org.apache.pulsar.shade.io.netty.channel.epoll.Native.offsetofEpollData() 
(tried 
Java_org_apache_pulsar_shade_io_netty_channel_epoll_Native_offsetofEpollData 
and 
Java_org_apache_pulsar_shade_io_netty_channel_epoll_Native_offsetofEpollData__)
   
![image](https://user-images.githubusercontent.com/17937790/170403792-e4b01924-c965-4f0f-a471-204a9610fe69.png)
   
   **Desktop (please complete the following information):**
    - OS: [e.g. iOS]
   Android 11 系统
   2022-05-26 10:33:00.536 2869-2921/com.xy.as.smartfllowup E/as.smartfllowu: 
No implementation found for int 
org.apache.pulsar.shade.io.netty.channel.epoll.Native.offsetofEpollData() 
(tried 
Java_org_apache_pulsar_shade_io_netty_channel_epoll_Native_offsetofEpollData 
and 
Java_org_apache_pulsar_shade_io_netty_channel_epoll_Native_offsetofEpollData__)
   **Additional context**
   Add any other context about the problem here.
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to