Class: Factbase::Pre
- Inherits:
-
Object
- Object
- Factbase::Pre
- Defined in:
- lib/factbase/pre.rb
Overview
A decorator of a Factbase
, that runs a provided block on every insert
.
For example, you can use this decorator if you want to put some properties into every fact that gets into the factbase:
fb = Factbase::Pre.new(Factbase.new) do |f, fbt|
f.when = Time.now
end
The second argument passed to the block is the factbase, while the first one is the fact just inserted.
- Author
-
Yegor Bugayenko ([email protected])
- Copyright
-
Copyright © 2024-2025 Yegor Bugayenko
- License
-
MIT
Instance Method Summary collapse
-
#initialize(fb, &block) ⇒ Pre
constructor
A new instance of Pre.
- #insert ⇒ Object
- #txn ⇒ Object
Constructor Details
#initialize(fb, &block) ⇒ Pre
Returns a new instance of Pre.
28 29 30 31 32 |
# File 'lib/factbase/pre.rb', line 28 def initialize(fb, &block) raise 'The "fb" is nil' if fb.nil? @fb = fb @block = block end |