ManualIoEventLoop.java — netty Source File
Architecture documentation for ManualIoEventLoop.java, a java file in the netty codebase.
Entity Profile
Relationship Graph
Source Code
/*
* Copyright 2025 The Netty Project
*
* The Netty Project licenses this file to you 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.netty.channel;
import io.netty.util.concurrent.AbstractScheduledEventExecutor;
import io.netty.util.concurrent.DefaultPromise;
import io.netty.util.concurrent.EventExecutor;
import io.netty.util.concurrent.Future;
import io.netty.util.concurrent.GlobalEventExecutor;
import io.netty.util.concurrent.Promise;
import io.netty.util.concurrent.Ticker;
import io.netty.util.internal.ObjectUtil;
import io.netty.util.internal.PlatformDependent;
import io.netty.util.internal.ThreadExecutorMap;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import java.util.Queue;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.RejectedExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
/**
* {@link IoEventLoop} implementation that is owned by the user and so needs to be driven by the user manually with the
* given {@link Thread}. This means that the user is responsible to call either {@link #runNow()} or {@link #run(long)}
* to execute IO and tasks that were submitted to this {@link IoEventLoop}.
* <p>
* This is for <strong>advanced use-cases only</strong>, where the user wants to own the {@link Thread} that drives the
* {@link IoEventLoop} to also do other work. Care must be taken that the {@link #runNow() or
* {@link #waitAndRun()}} methods are called in a timely fashion.
*/
public class ManualIoEventLoop extends AbstractScheduledEventExecutor implements IoEventLoop {
private static final Runnable WAKEUP_TASK = () -> {
// NOOP
};
private static final int ST_STARTED = 0;
private static final int ST_SHUTTING_DOWN = 1;
private static final int ST_SHUTDOWN = 2;
private static final int ST_TERMINATED = 3;
private final AtomicInteger state;
private final Promise<?> terminationFuture = new DefaultPromise<Void>(GlobalEventExecutor.INSTANCE);
// ... (622 more lines)
Domain
Subdomains
Source
Frequently Asked Questions
What does ManualIoEventLoop.java do?
ManualIoEventLoop.java is a source file in the netty codebase, written in java. It belongs to the Buffer domain, Telemetry subdomain.
Where is ManualIoEventLoop.java in the architecture?
ManualIoEventLoop.java is located at transport/src/main/java/io/netty/channel/ManualIoEventLoop.java (domain: Buffer, subdomain: Telemetry, directory: transport/src/main/java/io/netty/channel).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free