Top Description Methods
java.lang

public Interface Runnable

Known Direct Subinterfaces
java.util.concurrent.RunnableFuture
Known Direct Implementers
java.lang.Thread, java.util.Timer.ThreadReaper, java.util.TimerTask, java.lang.invoke.MethodHandleNatives.CallSiteContext, java.nio.DirectByteBuffer.Deallocator, java.util.concurrent.CompletableFuture.Completion, java.util.concurrent.CompletableFuture.AsyncSupply, java.util.concurrent.CompletableFuture.AsyncRun, java.util.concurrent.CompletableFuture.TaskSubmitter, java.util.concurrent.CompletableFuture.Timeout, java.util.concurrent.CompletableFuture.DelayedCompleter, java.util.concurrent.StructuredTaskScope.SubtaskImpl, java.util.concurrent.SubmissionPublisher.ConsumerTask, java.util.concurrent.ThreadPerTaskExecutor.TaskRunner, java.util.concurrent.ThreadPerTaskExecutor.ThreadBoundFuture, java.util.concurrent.ThreadPoolExecutor.Worker, java.util.zip.Deflater.DeflaterZStreamRef, java.util.zip.Inflater.InflaterZStreamRef, java.util.zip.ZipFile.InflaterCleanupAction, java.util.zip.ZipFile.CleanableResource, jdk.internal.foreign.MemorySessionImpl.ResourceList, jdk.internal.loader.NativeLibraries.Unloader, jdk.internal.logger.BootstrapLogger.BootstrapExecutors.BootstrapMessageLoggerTask, jdk.internal.perf.Perf.CleanerAction, jdk.internal.ref.CleanerImpl, sun.nio.ch.FileChannelImpl.Closer, sun.nio.ch.FileChannelImpl.Unmapper, sun.nio.ch.IOUtil.LinkedRunnable, sun.nio.ch.IOUtil.Releaser, sun.nio.ch.IOVecWrapper.Deallocator, sun.nio.ch.EPollPort.EventHandlerTask, sun.nio.fs.AbstractPoller, sun.nio.fs.Cancellable, sun.nio.fs.NativeBuffer.Deallocator, sun.security.provider.SeedGenerator.ThreadedSeedGenerator, sun.security.provider.SeedGenerator.ThreadedSeedGenerator.BogusThread, sun.net.www.http.KeepAliveCache, sun.net.www.http.KeepAliveStreamCleaner, sun.security.ssl.SSLEngineImpl.DelegatedTask, sun.security.ssl.TransportContext.NotifyHandshake
Annotations
@FunctionalInterface

Represents an operation that does not return a result.

This is a functional interface whose functional method is run().

Author
Arthur van Hoff
Since
1.0
See Also
java.util.concurrent.Callable

Method Summary

Modifier and TypeMethod and Description
public void
run()

Runs this operation.

Method Detail

runback to summary
public void run()

Runs this operation.