Jim Northrup
Jim Northrup
I have proposed a seemingly realistic streamed queuing feature with a synergy to this and other issues, #2060 wherein this enhancement has synergy with issues below also #911 #169 #1364...
I poked around and took a look at how I might adapt aria2 to the libcurl interfaces to make interoperability happen and it gave me a really thorough understanding of...
https://manpages.debian.org/unstable/liburing-dev/io_uring_enter.2.en.html#IORING_OP_ACCEPT should expose the source route of inbound
this is very forward looking... I'm maintaining a seperate XChange fork for the moment, though i'd rather smooth swagger into rescu for now https://github.com/jnorthrup/XChange/tree/jaxrs ``` jim@XChange$ cd ../Xpolyglot/ jim@Xpolyglot$ mkdir...
i would very much love to see a swagger-codegen jaxrs sample adaptation by the guy who knows all the compromises and tradeoffs of the rescu library. What would take you...
@mmazi the first obstacle i've run across creating proxies for swagger generated jaxrs API's is an exception throw because the API declares "throws Exception" am i missing an option that...
``` java.lang.IllegalArgumentException: Only IOExceptions and RuntimeExceptions are supported on API methods; this method doesn't comply: public abstract org.knowm.xchange.idexjaxrs.dto.ReturnTickerResponse org.knowm.xchange.idexjaxrs.service.ReturnTickerApi.ticker(org.knowm.xchange.idexjaxrs.dto.Market) throws java.lang.Exception at si.mazi.rescu.RestMethodMetadata.create(RestMethodMetadata.java:99) at si.mazi.rescu.RestInvocationHandler.getMetadata(RestInvocationHandler.java:181) at si.mazi.rescu.RestInvocationHandler.invoke(RestInvocationHandler.java:106) at com.sun.proxy.$Proxy8.ticker(Unknown Source)...
i would be glad to help maintain this. the basic intent would be to make enough things public or remove such exceptions until the problem goes away
when i alter https://github.com/jnorthrup/rescu/blob/c769c6189e00fc8744ce105f1a021d42ea1aea78/src/main/java/si/mazi/rescu/RestMethodMetadata.java#L97 to test for ```java for (Class thrownException : thrownExceptions) { if (!Exception.class.isAssignableFrom(thrownException)) { if (!Exception.class.isAssignableFrom(thrownException)) { throw new IllegalArgumentException("Only IOExceptions and RuntimeExceptions are supported on API...
thank you this helps. im not able to see the REST calls using logback.xml in the src/main/java  is there a programmatic feature to do same? I am this far...