sig
class type dn_store_config =
object method dn_blocksize : int method dn_directory : string end
val init_store : Dn_store.dn_store_config -> string -> int64 -> unit
type dn_store
val open_store : Dn_store.dn_store_config -> Dn_store.dn_store
val close_store : Dn_store.dn_store -> unit
val get_identity : Dn_store.dn_store -> string
val get_blocksize : Dn_store.dn_store -> int
val get_size : Dn_store.dn_store -> int64
val read_block :
Dn_store.dn_store ->
int64 -> int -> Netsys_mem.memory -> int -> int -> unit
val write_block :
Dn_store.dn_store -> int64 -> Netsys_mem.memory -> int -> unit
val will_read_block : Dn_store.dn_store -> int64 -> unit
val sync : Dn_store.dn_store -> unit
end