Example usage for io.netty.util.concurrent BlockingOperationException BlockingOperationException

List of usage examples for io.netty.util.concurrent BlockingOperationException BlockingOperationException

Introduction

In this page you can find the example usage for io.netty.util.concurrent BlockingOperationException BlockingOperationException.

Prototype

public BlockingOperationException() 

Source Link

Usage

From source file:com.caricah.iotracah.server.netty.channelgroup.IotChannelGroupFuture.java

License:Apache License

@Override
protected void checkDeadLock() {
    EventExecutor e = executor();//from   w w  w  . j  a va 2s  . c om
    if (e != null && e != ImmediateEventExecutor.INSTANCE && e.inEventLoop()) {
        throw new BlockingOperationException();
    }
}