We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c56f4c + eab9019 commit 04a9b94Copy full SHA for 04a9b94
mina-core/src/main/java/org/apache/mina/core/service/IoHandler.java
@@ -121,5 +121,7 @@ public interface IoHandler {
121
* @param event The event to process
122
* @throws Exception If we get an exception while processing the event
123
*/
124
- void event(IoSession session, FilterEvent event) throws Exception;
+ default void event(IoSession session, FilterEvent event) throws Exception {
125
+ // Nothing
126
+ }
127
}
0 commit comments