Prev
Open Object Rexx
Next
Code style
dark
electric
light
print
rgfdark
rgflight
tokio-day
tokio-night
vim-dark-blue
vim-dark-darkblue
vim-dark-desert
vim-dark-elflord
vim-dark-evening
vim-dark-industry
vim-dark-koehler
vim-dark-murphy
vim-dark-pablo
vim-dark-ron
vim-dark-slate
vim-dark-torte
vim-light-delek
vim-light-morning
vim-light-peachpuff
vim-light-shine
vim-light-zellner
5.4.7.2. isPosted
Returns
.true
if the event semaphore is in the posted state,
.false
if it is currently cleared.
See also methods
post
and
reset
.
Example 5.240. EventSemaphore class — isPosted method
sem
=
.EventSemaphore
~
new
say
sem
~
isPosted
-- 0
sem
~
post
say
sem
~
isPosted
-- 1
Prev
5.4.7.1. new (Class Method)
Up
Home
Next
5.4.7.3. post