MongoDB\Driver\WriteConcern::getWtimeout

(mongodb >=1.0.0)

MongoDB\Driver\WriteConcern::getWtimeoutReturns the WriteConcern's "wtimeout" option

설명

final public int MongoDB\Driver\WriteConcern::getWtimeout ( void )

인수

이 함수는 인수가 없습니다.

반환값

Returns the WriteConcern's "wtimeout" option.

오류/예외

예제

Example #1 MongoDB\Driver\WriteConcern::getWtimeout() example

<?php

$wc 
= new MongoDB\Driver\WriteConcern(1);
var_dump($wc->getWtimeout());

$wc = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY3000);
var_dump($wc->getWtimeout());

?>

위 예제의 출력:

int(0)
int(3000)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top