bbaldino
bbaldino
Has anyone gotten this to work with potentially multiple sub-classes in a chain? I want to be able to define a class like: ``` import { EventEmitter } from 'events';...
@Sertonix you're saying because, in that scenario, which `event_one` is ambiguous? I was wondering if it was related to some ambiguity as well (i.e. since it's some generic `T` extending,...
I end up with a linking command that looks like this: ``` /bin/sh -c cd '/Users/bbaldino/work/sctp4j/jniwrapper/native' && 'gcc' '-shared' '-L/Users/bbaldino/work/sctp4j/jniwrapper/native/target/usrsctp-1.0-SNAPSHOT/lib' 'target/usrsctp-1.0-SNAPSHOT/lib/libusrsctp.a' '-lpthread' '-o' '/Users/bbaldino/work/sctp4j/jniwrappe r/native/target/libjnisctp-darwin-x86_64.jnilib' 'target/objs/org_jitsi_modified_sctp4j_SctpJni.o' 'target/objs/org_jitsi_modified_sctp4j_SctpJni.o' ``` (same target...
After looking at the code a bit I can confirm it's resolved by https://github.com/mojohaus/maven-native/pull/27. Is there a plan for a new release?
sorry, but for the life of me I can't figure out how to add that repo in maven. I tried: ``` oss-sonatype oss-sonatype https://oss.sonatype.org/content/repositories/orgcodehausmojo-1137 true true ``` but can't find...
I had the same reaction and was surprised when `dontTransition` ends up causing an identity transition. I eventually ended up doing the filtering suggested above, but fixing things this way...
Actually, I was just looking at Scarlet's usages of the state machine and saw [this usage](https://github.com/Tinder/Scarlet/blob/3ddd11441e4fc0eeb7b4c8dc38b1ac8c4f6ba5c3/scarlet/src/main/java/com/tinder/scarlet/internal/connection/Connection.kt#L210) ``` private fun lifecycleStart() = any().where { state == Lifecycle.State.Started } ``` which looks...
I'm also interested in a pooled pubsub usecase. We're using an adhoc pubsub channel to add some request/response type semantic; a stream for the return channel means that the data...
I was also wondering: it looks like [`RetryTransientMiddleware`](https://github.com/TrueLayer/reqwest-middleware/blob/efdd52f2fa7d5f97e84381dd122004c5c1eb4699/reqwest-retry/src/middleware.rs#L111) has state to track the number of past retries, and [`RetryPolicy`](https://github.com/TrueLayer/retry-policies/blob/25c5eae69a326250f9299640dd517f6c304009b5/src/retry_policy.rs#L6) has specific support for the number of past retries...could `RetryPolicy` also...
Thanks...we ended up working around this so haven't looked at it in a while, but if I can find some time I'll come back and take a shot at it.