Johan Haleby

Results 102 issues of Johan Haleby

_From [[email protected]](https://code.google.com/u/109551924329177378761/) on February 04, 2013 02:46:47_ What steps will reproduce the problem? 1.use annotation in class @RunWith(PowerMockRunner.class) @PrepareForTest({ MyClass.class, AnotherClass.class }) 2.run the testcase by junit4 in eclipse then...

bug
imported
Priority:Medium

_From [[email protected]](https://code.google.com/u/118418505145831703339/) on November 07, 2013 12:35:10_ public interface InterfaceA { public InternalClass create(Object param1, Object param2); public int getID(); } public class InternalClass { private int result = 0;...

bug
imported
Priority:Medium

_From [[email protected]](https://code.google.com/u/100899915105869891957/) on February 10, 2011 17:22:25_ I this a bug or a feature ? It doesn't work as expected or I don't have the skills to do the right...

bug
imported
Priority:Medium

Don't log "Caused by: org.occurrent.eventstore.api.WriteConditionNotFulfilledException: WriteCondition was not fulfilled. Expected version any but was 3."

https://github.com/yonik/java_util/blob/master/src/util/hash/MurmurHash3.java

It would be nice to be able to do e.g. like this: ```kotlin subscriptions.subscribeAsync("id") { ctx, e -> Thread.ofVirtual().start { log.info("Async") ctx.ack() } } ``` I.e. don't store position until...

E.g. ```java @Subscription(id="mySubscriptionId", class=MyEvent.class) public void something(MyEvent) { .. } ``` See `EnableRabbit` that loads `RabbitListenerConfigurationSelector` that loads `RabbitBootstrapConfiguration` that loads `RabbitListenerAnnotationBeanPostProcessor` :)

It would be nice to be able to do: ```kotlin domainEventQueries.exists(Filter.type(Condition.in("A", "B", "C"))) ```

It can be useful to allow pushing events to (certain?) subscription models. For example for recurring events (`TenHoursPassedEvent`) and integration events.

Currently, you can do: ``` RetryStrategy .exponentialBackoff(Duration.ofSeconds(1), Duration.ofSeconds(5), 2.0) .maxAttempts(10) .onError { info, throwable -> println("somethign") } .execute(..) ``` But it would be nice to do something on "completion with...