K2hash::transaction K2hash Class

K2hash::unsetTransactionThreadPool

トランザクション処理用のスレッドを利用しない

説明

 public static bool K2hash::unsetTransactionThreadPool ( void )

トランザクション処理用のスレッドを利用しません。

パラメータ

この関数にはパラメータはありません。

戻り値

成功した場合に true を、失敗した場合に false を返します。

<?php
var_dump(K2hash::settransactionThreadPool(1));
var_dump(K2hash::gettransactionThreadPool());
var_dump(K2hash::unsettransactionThreadPool());
?>

上の例の出力は以下となります。

bool(true)
int(1)
bool(true)

参考

K2hash::transaction K2hash Class