Example usage for io.netty.handler.timeout ReadTimeoutHandler subclass-usage

List of usage examples for io.netty.handler.timeout ReadTimeoutHandler subclass-usage

Introduction

In this page you can find the example usage for io.netty.handler.timeout ReadTimeoutHandler subclass-usage.

Usage

From source file org.opendaylight.ocpjava.protocol.impl.core.IdleHandler.java

/**
 * Detects idle state of radioHead and informs upper layers
 * @author michal.polkorab
 * @author Marko Lai <marko.ch.lai@foxconn.com>
 */
public class IdleHandler extends ReadTimeoutHandler {

From source file xyz.kvantum.server.implementation.KvantumReadTimeoutHandler.java

final class KvantumReadTimeoutHandler extends ReadTimeoutHandler {

    KvantumReadTimeoutHandler() {
        super(CoreConfig.timeout, TimeUnit.valueOf(CoreConfig.timeoutUnit));
    }