This is not entirely Cocoa, it is java, but it involves ObjectiveC JNI, the
java native interface.
Also a little bit of a long story, my apologies.
Specifically the question concerns kqueue, my code is based on the Uli Kusterer
ObjectiveC interface to that.
Java nio.2 introduced the WatchServi
How long does it take before it stops? Is that time consistent?
If it is, what is driving the event broadcasting and what conditions are
causing it so stop?
Is there a way for your event broadcaster to fire off a useless heartbeat every
15 seconds so that you can see that it's alive and you ca
> On Nov 24, 2016, at 2:06 PM, Alex Zavatone wrote:
>
> How long does it take before it stops? Is that time consistent?
kqueue seems to stop posting events as soon as the java code starts waiting for
it to post them.
The kevent wait looks currently looks like this…
n = kevent64( queueFD, NULL
On Nov 24, 2016, at 2:40 PM, Michael Hall wrote:
>> On Nov 24, 2016, at 2:06 PM, Alex Zavatone wrote:
>>
>> How long does it take before it stops? Is that time consistent?
>
> kqueue seems to stop posting events as soon as the java code starts waiting
> for it to post them.
> The kevent wait
>
>> On Nov 24, 2016, at 3:27 PM, Alex Zavatone wrote:
>>
>>
>> Yeah, I was trying to see if it would be possible for whatever service is
>> failing to send events to display periodic output that would help you
>> determine what stops working and why.
>>
>> I'll send you some samples offli