public Method

Sync_m.sync_synchronize(mode = EX) { || ... }

There's no documentation for this item.

Source Code

# File sync.rb, line 226
def sync_synchronize(mode = EX)
  begin
    sync_lock(mode)
    yield
  ensure
    sync_unlock
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.