Method: Bdb::Env#rep_priority

Defined in:
ext/bdb.c

#rep_priorityObject

env.rep_priority -> int

returns the replication manager’s acknowledgement policy



2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
# File 'ext/bdb.c', line 2946

VALUE env_rep_get_priority(VALUE obj)
{
  t_envh *eh;
  u_int32_t priority;

  Data_Get_Struct(obj,t_envh,eh);
  eh->env->rep_get_priority(eh->env, &priority);

  return INT2NUM(priority);
}