public TableOptions(
string name,
int bucketCount,
int recPerPage,
int lockCount = 0,
int maxAgeSec = 0,
bool parallelSweep = false
)
public TableOptions(
string name,
int bucketCount,
int recPerPage,
int lockCount = 0,
int maxAgeSec = 0,
bool parallelSweep = false
)
Public Sub New (
name As String,
bucketCount As Integer,
recPerPage As Integer,
Optional lockCount As Integer = 0,
Optional maxAgeSec As Integer = 0,
Optional parallelSweep As Boolean = false
)
Public Sub New (
name As String,
bucketCount As Integer,
recPerPage As Integer,
Optional lockCount As Integer = 0,
Optional maxAgeSec As Integer = 0,
Optional parallelSweep As Boolean = false
)
public:
TableOptions(
String^ name,
int bucketCount,
int recPerPage,
int lockCount = 0,
int maxAgeSec = 0,
bool parallelSweep = false
)
public:
TableOptions(
String^ name,
int bucketCount,
int recPerPage,
int lockCount = 0,
int maxAgeSec = 0,
bool parallelSweep = false
)
new :
name : string *
bucketCount : int *
recPerPage : int *
?lockCount : int *
?maxAgeSec : int *
?parallelSweep : bool
(* Defaults:
let _lockCount = defaultArg lockCount 0
let _maxAgeSec = defaultArg maxAgeSec 0
let _parallelSweep = defaultArg parallelSweep false
*)
-> TableOptions
new :
name : string *
bucketCount : int *
recPerPage : int *
?lockCount : int *
?maxAgeSec : int *
?parallelSweep : bool
(* Defaults:
let _lockCount = defaultArg lockCount 0
let _maxAgeSec = defaultArg maxAgeSec 0
let _parallelSweep = defaultArg parallelSweep false
*)
-> TableOptions