Stephan Schuster

Results 13 comments of Stephan Schuster

Same here! Any updates on this issue? BTW: I am NOT using the Javascript Client, but the Java Client.

Meanwhile I found the issue on the server and created a pull request: https://github.com/deepstreamIO/deepstream.io/pull/915

Hi @arnaudgiuliani, I am not saying that wrapping is needed. It is not. But I think it would provide the following benefits: - It's shorter, easier and nicer to write...

I guess the original question just was if the framework code should rather check for "instanceof" instead of "exact same class". Probably these are two separate use cases and would...

While I like the idea of encapsulating related things and keeping APIs minimal, I think this would add slightly more complexity/code and especially prevent different usages of `action `and `actionOn`,...

Same here. Do not get it to work without lambdas as said in docs. I always need to use curly braces.

@bric3: I would have a question. Maybe you could help me. I would like to modularize my Gradle scripts like this: **File: /app/build.gradle** ``` apply from: rootProject.file('gradle/license.gradle') ``` **File: /gradle/license.gradle**...

@bric3 Thanks for your response. Yes, I am currently using a gradle project with only a single module/subproject. If I ever switch to multiple subprojects, I would also want to...