Re: [ANNOUNCE] New committer: Lari Hotari

2021-05-06 Thread Jinfeng Huang
Congratulations, Lari! Best Regards, Jennifer On Fri, May 7, 2021 at 7:37 AM Anonymitaet _ wrote: > Cheers to this exciting news! Congrats Lari Hotari! > > > > *From: *Enrico Olivelli > *Reply-To: *"users@pulsar.apache.org" > *Date: *Friday, May 7, 2021 at 03:31 > *To: *"users@pulsar.apache.

Re: [ANNOUNCE] New committer: Lari Hotari

2021-05-06 Thread Anonymitaet _
Cheers to this exciting news! Congrats Lari Hotari! From: Enrico Olivelli Reply-To: "users@pulsar.apache.org" Date: Friday, May 7, 2021 at 03:31 To: "users@pulsar.apache.org" Cc: Dev Subject: Re: [ANNOUNCE] New committer: Lari Hotari Congratulations Really well deserved Enrico Il Gio 6 Mag 2

Re: Providing a custom deallocator for Pulsar::Message created via setAllocatedContent

2021-05-06 Thread Matteo Merli
Hi, the custom deallocator is actually an interesting idea, though the general pattern to deallocate the memory is something like: === char* payload = new char[1024]; Message msg = MessageBuilder() .setAllocatedContent(payload, sizeof(payload)) .build(); produ

Re: [ANNOUNCE] New committer: Lari Hotari

2021-05-06 Thread Enrico Olivelli
Congratulations Really well deserved Enrico Il Gio 6 Mag 2021, 20:54 Michael Marshall ha scritto: > Congratulations, Lari! > > Best Regards, > Michael Marshall > > On Thu, May 6, 2021 at 12:38 PM Devin Bost wrote: > >> Congrats! >> >> Devin G. Bost >> >> >> On Thu, May 6, 2021 at 12:36 PM Matt

Re: [ANNOUNCE] New committer: Lari Hotari

2021-05-06 Thread Michael Marshall
Congratulations, Lari! Best Regards, Michael Marshall On Thu, May 6, 2021 at 12:38 PM Devin Bost wrote: > Congrats! > > Devin G. Bost > > > On Thu, May 6, 2021 at 12:36 PM Matteo Merli wrote: > >> Hi everyone, >> >> The Project Management Committee (PMC) for Apache Pulsar has invited >> Lari H

Re: [ANNOUNCE] New committer: Lari Hotari

2021-05-06 Thread Devin Bost
Congrats! Devin G. Bost On Thu, May 6, 2021 at 12:36 PM Matteo Merli wrote: > Hi everyone, > > The Project Management Committee (PMC) for Apache Pulsar has invited > Lari Hotari (https://github.com/lhotari) to become a committer and we > are pleased to announce that he has accepted. > > Please

[ANNOUNCE] New committer: Lari Hotari

2021-05-06 Thread Matteo Merli
Hi everyone, The Project Management Committee (PMC) for Apache Pulsar has invited Lari Hotari (https://github.com/lhotari) to become a committer and we are pleased to announce that he has accepted. Please join us in congratulating and welcoming Lari onboard! Thanks, Matteo -- Matteo Merli

Providing a custom deallocator for Pulsar::Message created via setAllocatedContent

2021-05-06 Thread Marco Guest
Hi, I am implementing a message exchange between C++ applications using Pulsar technology. To improve performances I would like to avoid copying my application data when creating a new Pulsar::Message. For this reason I would like to use pulsar::MessageBuilder::setAllocatedContent(). However I’m in