Clojure - 观察者


观察者是添加到变量类型(例如Atomics和引用变量)的函数,当变量类型的值发生更改时会调用这些函数。例如,如果调用程序更改了Atomics变量的值,并且如果将观察器函数附加到Atomics变量,则一旦Atomics值发生更改,就会调用该函数。

Clojure 中为观察者提供了以下功能。

添加监视

向 agent/atom/var/ref 引用添加监视函数。手表“fn”必须是 4 个参数的“fn”:键、引用、旧状态、新状态。每当引用的状态可能发生更改时,任何已注册的监视都会调用其函数。

句法

以下是语法。

(add-watch variable :watcher
   (fn [key variable-type old-state new-state]))

参数- '变量'是Atomics或引用变量的名称。'variable-type' 是变量的类型,可以是Atomics变量,也可以是引用变量。“旧状态和新状态”是自动保存变量的旧值和新值的参数。“key”对于每个引用必须是唯一的,并且可用于通过remove-watch 删除手表。

返回值- 无。

例子

以下程序显示了如何使用它的示例。

(ns clojure.examples.example
   (:gen-class))
(defn Example []
   (def x (atom 0))
   (add-watch x :watcher
      (fn [key atom old-state new-state]
      (println "The value of the atom has been changed")
      (println "old-state" old-state)
      (println "new-state" new-state)))
(reset! x 2))
(Example)

输出

上述程序产生以下输出。

The value of the atom has been changed
old-state 0
new-state 2

删除手表

删除已附加到引用变量的监视。

句法

以下是语法。

(remove-watch variable watchname)

参数- '变量'是Atomics或引用变量的名称。'watchname' 是定义 watch 函数时为 watch 指定的名称。

返回值- 无。

例子

以下程序显示了如何使用它的示例。

(ns clojure.examples.example
   (:gen-class))
(defn Example []
   (def x (atom 0))
   (add-watch x :watcher
      (fn [key atom old-state new-state]
         (println "The value of the atom has been changed")
         (println "old-state" old-state)
         (println "new-state" new-state)))
   (reset! x 2)
   (remove-watch x :watcher)
(reset! x 4))
(Example)

输出

上述程序产生以下输出。

The value of the atom has been changed
old-state 0
new-state 2

从上面的程序中可以清楚地看到,第二个重置命令不会触发观察者,因为它已从观察者列表中删除。