In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
Import java.util.concurrent.TimeUnit;import org.apache.pulsar.client.api.Producer;import org.apache.pulsar.client.api.PulsarClient;import org.apache.pulsar.client.impl.schema.JSONSchema;public class SendMsgTest {public static void main (String [] args) {String url = "http://192.168.1.48:8080"; Try {/ / the first step is to establish a connection PulsarClient client = PulsarClient.builder () .serviceUrl (url) .connectionTimeout (10Med TimeUnit.SECONDS) .build () / / the second step is to create a producer object / / specify the format of sending data (see Pulsar schemas for details) Producer producer=client.newProducer (JSONSchema.of (UserModel.class)) .topic ("my-tenant/my-namespace/testschema-topic") .sendTimeout (10 TimeUnit.SECONDS) .producerName ("senduser") .create () UserModel userModel=new UserModel (); userModel.setName ("testmsg"); userModel.setAge (21); producer.send (userModel); / / synchronous send producer.sendAsync (userModel) asynchronously send System.out.print ("send ok"); client.close ();} catch (Exception e) {e.printStackTrace () }}}
Public class UserModel {
Private String name;private int age;public String getName () {return name;} public void setName (String name) {this.name = name;} public int getAge () {return age;} public void setAge (int age) {this.age = age;}
}
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.