Handbook
Glossary
remove-connection ( observer model -- )
Models
Prev:
add-connection ( observer model -- )
Next:
model-changed ( model observer -- )
Vocabulary
models
Inputs
observer
an
object
model
a
model
Outputs
None
Generic word contract
Unregisters an object no longer interested in being notified of changes to the model's value.
See also
add-connection
,
model-changed
Definition
USING:
accessors
kernel
sequences
;
IN:
models
:
remove-connection
( observer model -- )
[
connections>>
remove!
]
1check
empty?
[
deactivate-model
]
[
drop
]
if
;