|
Jan
29 |
|
awarded | Nice Answer |
|
Jan
28 |
|
awarded | Revival |
|
Dec
18 |
|
awarded | Revival |
|
Oct
27 |
|
awarded | Yearling |
|
Sep
28 |
|
awarded | Necromancer |
|
Jun
12 |
|
awarded | Supporter |
|
Apr
25 |
|
answered | Injection with google guice does not work anymore after obfuscation with proguard |
|
Apr
3 |
|
awarded | Supporter |
|
Apr
2 |
|
awarded | Yearling |
|
Apr
2 |
|
awarded | Yearling |
|
Feb
21 |
|
comment |
Need button to stay at the bottom of my dialog Alternatively you can use a "newline push" on the last component, the one that you want pushed to the bottom of the frame. |
|
Feb
19 |
|
comment |
Run multiple java main methods in eclipse you also have to put them in <parallel> ... </parallel> otherwise they won't run concurrently |
|
Feb
19 |
|
comment |
Run multiple java main methods in eclipse You need to add fork="yes" to the <java element to make it run in a different JVM to the ant task. ant.apache.org/manual/Tasks/java.html |
|
Feb
9 |
|
answered | How to deal with vendor/plugins after upgrading to rails 3.2.1 |
|
Feb
7 |
|
awarded | Necromancer |
|
Dec
19 |
|
comment |
Can Netty get a notification of SSLEngine getting a close_notify Seems the answer is no, I went over the source code and it appears that currently Netty does not detect the SSLEngine processing a close_notify, so you end up with a situation where the SSLEngine is in state CLOSED, but the upper layer does not know that. I will look to see what needs to be done to detect the CLOSED status. I think probably a Future could be attached to the SslHandler to allow a callback to be called if the SSLEngine closes. |
|
Dec
19 |
|
answered | How best to specify a Protobuf for use with Netty (preferably using the built-in protobuf support) |
|
Dec
19 |
|
awarded | Student |
|
Dec
19 |
|
asked | Can Netty get a notification of SSLEngine getting a close_notify |
|
Nov
24 |
|
comment |
Polymorphically convert Java enum values into a list of strings +1 for the second option as it makes the accepted answer type safe by making sure it implements getDisplayValue(). and removes the reflection. |