A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.racket-lang.org/reference/sync.html below:

11.2.1 Events

11.2.1 Events🔗ℹ

A synchronizable event (or just event for short) works with the sync procedure to coordinate synchronization among threads. Certain kinds of objects double as events, including ports and threads. Other kinds of objects exist only for their use as events. Racket’s event system is based on Concurrent ML [Reppy99].

At any point in time, an event is either ready for synchronization, or it is not; depending on the kind of event and how it is used by other threads, an event can switch from not ready to ready (or back), at any time. If a thread synchronizes on an event when it is ready, then the event produces a particular synchronization result.

Synchronizing an event may affect the state of the event. For example, when synchronizing a semaphore, then the semaphore’s internal count is decremented, just as with semaphore-wait. For most kinds of events, however (such as a port), synchronizing does not modify the event’s state.

Racket values that act as synchronizable events include asynchronous channels, channels, custodian boxes, log receivers, place channels, ports, semaphores, subprocesses, TCP listeners, threads, and will executors. Libraries can define new synchronizable events, especially though prop:evt.

Examples:

When at least one evt is ready, its synchronization result (often evt itself) is returned. If multiple evts are ready, one of the evts is chosen pseudo-randomly for the result; the current-evt-pseudo-random-generator parameter sets the random-number generator that controls this choice.

Examples:

Changed in version 6.1.0.3 of package base: Allow 0 arguments instead of 1 or more.

Like

sync

if

timeout

is

#f

. If

timeout

is a real number, then the result is

#f

if

timeout

seconds pass without a successful synchronization. If

timeout

is a procedure, then it is called in tail position if polling the

evt

s discovers no ready events.

A zero value for timeout is equivalent to (lambda () #f). In either case, each evt is checked at least once before returning #f or calling timeout.

See also alarm-evt for an alternative timeout mechanism.

Examples:

; times out before waking up

#f

no ready events

Changed in version 6.1.0.3 of package base: Allow 1 argument instead of 2 or more.

Like

sync

, but breaking is enabled (see

Breaks

) while waiting on the

evt

s. If breaking is disabled when

sync/enable-break

is called, then either all

evt

s remain unchosen or the

exn:break

exception is raised, but not both.

Creates and returns a single event that combines the

evt

s. Supplying the result to

sync

is the same as supplying each

evt

to the same call.

That is, an event returned by choice-evt is ready for synchronization when one or more of the evts supplied to choice-evt are ready for synchronization. If the choice event is chosen, one of its ready evts is chosen pseudo-randomly, and the synchronization result is the chosen evt’s synchronization result.

Examples:

The call to wrap is parameterize-breaked to disable breaks initially.

Examples:

Examples:

Creates a value that behaves as an event, but that is actually an event maker.

An event guard returned by guard-evt generates an event when guard is used with sync (or whenever it is part of a choice event used with sync, etc.), where the generated event is the result of calling maker. The maker procedure may be called by sync at most once for a given call to sync, but maker may not be called if a ready event is chosen before guard is even considered.

If maker returns a non-event, then maker’s result is replaced with an event that is ready for synchronization and whose synchronization result is guard.

Like

guard-evt

, but when

maker

is called, it is given a NACK (“negative acknowledgment”) event. After starting the call to

maker

, if the event from

maker

is not ultimately chosen as the ready event, then the NACK event supplied to

maker

becomes

ready for synchronization

with a

#<void>

value.

The NACK event becomes ready for synchronization when the event is abandoned when either some other event is chosen, the synchronizing thread is dead, or control escapes from the call to sync (even if nack-guard’s maker has not yet returned a value). If the event returned by maker is chosen, then the NACK event never becomes ready for synchronization.

Like

guard-evt

, but when

maker

is called, it is provided a boolean value that indicates whether the event will be used for a poll,

#t

, or for a blocking synchronization,

#f

.

If #t is supplied to maker, if breaks are disabled, if the polling thread is not terminated, and if polling the resulting event produces a synchronization result, then the event will certainly be chosen for its result.

The attempt to synchronize on evt proceeds concurrently as the attempt to synchronize on the result guard from replace-evt; despite that concurrency, if maker is called, it is called in the thread that is synchronizing on guard. Synchronization can succeed for both evt and another synchronized with guard at the same time; the single-choice guarantee of synchronization applies only to the result of maker and other events synchronized with guard.

If maker returns a non-event, then maker’s result is replaced with an event that is ready for synchronization and whose synchronization result is guard.

Added in version 6.1.0.3 of package base.

Example:

Example:

Returns an event that is

ready for synchronization

when the system is otherwise idle: if the result event were replaced by

never-evt

, no thread in the system would be available to run. In other words, all threads must be suspended or blocked on events with timeouts that have not yet expired. The system-idle event’s

synchronization result

is

#<void>

. The result of the

system-idle-evt

procedure is always the same event.

Examples:

Examples:

Changed in version 8.3.0.9 of package base: Added the monotonic? argument.

Examples:

For working with foreign libraries, a prop:evt value can also be a result of unsafe-poller, although that possibility is omitted from the safe contract of prop:evt.

Instances of a structure type with the prop:input-port or prop:output-port property are also synchronizable events by virtue of being a port. If the structure type has more than one of prop:evt, prop:input-port, and prop:output-port, then the prop:evt value (if any) takes precedence for determining the instance’s behavior as an event, and the prop:input-port property takes precedence over prop:output-port for synchronization.

Examples:


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4