当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby PStore.abort用法及代码示例


本文简要介绍ruby语言中 PStore.abort 的用法。

用法

abort()

结束当前 PStore#transaction ,放弃对数据存储的任何更改。

例子:

require "pstore"

store = PStore.new("data_file.pstore")
store.transaction do  # begin transaction
  store[:one] = 1     # this change is not applied, see below...
  store[:two] = 2     # this change is not applied, see below...

  store.abort         # end transaction here, discard all changes

  store[:three] = 3   # this change is never reached
end

警告:此方法仅在 PStore#transaction 中有效。如果在任何其他时间调用,它将引发 PStore::Error

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 PStore.abort。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。