folly::FiberIOExecutor

An IOExecutor that executes funcs under mapped fiber context

Synopsis

Declared in <folly/executors/FiberIOExecutor.h>

class FiberIOExecutor
    : public IOExecutor

Description

A FiberIOExecutor wraps an IOExecutor, but executes funcs on the FiberManager mapped to the underlying IOExector's event base.

Base Classes

NameDescription
IOExecutorAn executor backed by an I/O event loop.

Type Aliases

NameDescription
KeepAlive Alias for ExecutorKeepAlive, a safe pointer to an Executor.

Member Functions

NameDescription
FiberIOExecutor [constructor]Constructs the executor from a backing IO executor.
add add overloads
addWithPriority [virtual]Enqueue a function with a given priority, where 0 is the medium priority This is up to the implementation to enforce
getEventBase [virtual]Returns the event base of the backing IO executor.
getNumPriorities [virtual]Returns the number of priority levels this executor supports.

Static Member Functions

NameDescription
getKeepAliveToken getKeepAliveToken overloads
invokeCatchingExns Invokes f, logging and swallowing any exception it throws.

Static Data Members

NameDescription
HI_PRI Highest schedulable priority.
LO_PRI Lowest schedulable priority.
MID_PRI Medium (default) schedulable priority.

Protected Member Functions

NameDescription
keepAliveAcquire [virtual]Acquire a keep alive token. Should return false if keep-alive mechanism is not supported.
keepAliveRelease [virtual]Release a keep alive token previously acquired by keepAliveAcquire(). Will never be called if keepAliveAcquire() returns false.

Protected Static Member Functions

NameDescription
isKeepAliveDummy Returns true if the KeepAlive is constructed from an executor that does not support the keep alive ref-counting functionality
keepAliveAcquire Acquires a keep-alive reference on executor.
keepAliveRelease Releases a keep-alive reference on executor.
makeKeepAlive Makes a counted (non-dummy, non-alias) keep-alive referring to executor.

Non-Member Functions

NameDescription
async_tracing::logFutureViaTrace hook invoked when a Future is rescheduled onto an executor.
async_tracing::logGetGlobalCPUExecutorTrace hook invoked when the global CPU executor is retrieved.
async_tracing::logGetGlobalIOExecutorTrace hook invoked when the global IO executor is retrieved.
async_tracing::logGetImmutableCPUExecutorTrace hook invoked when the immutable CPU executor is retrieved.
async_tracing::logGetImmutableIOExecutorTrace hook invoked when the immutable IO executor is retrieved.
async_tracing::logSemiFutureViaTrace hook invoked when a SemiFuture is rescheduled onto an executor.
async_tracing::logSetGlobalCPUExecutorTrace hook invoked when the global CPU executor is set.
async_tracing::logSetGlobalIOExecutorTrace hook invoked when the global IO executor is set.