io.micronaut.http.netty.channel.loom.DelegateIoHandler Maven / Gradle / Ivy
/*
* Copyright 2017-2025 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.http.netty.channel.loom;
import io.micronaut.core.annotation.Internal;
import io.netty.channel.IoHandle;
import io.netty.channel.IoHandler;
import io.netty.channel.IoHandlerContext;
import io.netty.channel.IoRegistration;
/**
* {@link IoHandler} that delegates.
*
* @author Jonas Konrad
* @since 4.9.0
*/
@Internal
abstract class DelegateIoHandler implements IoHandler {
private final IoHandler delegate;
DelegateIoHandler(IoHandler delegate) {
this.delegate = delegate;
}
@Override
public void initialize() {
delegate.initialize();
}
@Override
public int run(IoHandlerContext context) {
return delegate.run(context);
}
@Override
public void prepareToDestroy() {
delegate.prepareToDestroy();
}
@Override
public void destroy() {
delegate.destroy();
}
@Override
public IoRegistration register(IoHandle handle) throws Exception {
return delegate.register(handle);
}
@Override
public void wakeup() {
delegate.wakeup();
}
@Override
public boolean isCompatible(Class extends IoHandle> handleType) {
return delegate.isCompatible(handleType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy