GoLang MongoDB\Driver\ReadPreference::getMaxStalenessSeconds

request it (242)
GoLang replacement for PHP's MongoDB\Driver\ReadPreference::getMaxStalenessSeconds [edit | history]



Do you know a GoLang replacement for PHP's MongoDB\Driver\ReadPreference::getMaxStalenessSeconds? Write it!

PHP MongoDB\Driver\ReadPreference::getMaxStalenessSeconds

PHP original manual for MongoDB\Driver\ReadPreference::getMaxStalenessSeconds [ show | php.net ]

MongoDB\Driver\ReadPreference::getMaxStalenessSeconds

(mongodb >=1.2.0)

MongoDB\Driver\ReadPreference::getMaxStalenessSecondsReturns the ReadPreference's "maxStalenessSeconds" option

Description

final public int MongoDB\Driver\ReadPreference::getMaxStalenessSeconds ( void )

Parameters

This function has no parameters.

Return Values

Returns the ReadPreference's "maxStalenessSeconds" option. If no max staleness has been specified, MongoDB\Driver\ReadPreference::NO_MAX_STALENESS will be returned.

Errors/Exceptions

Examples

Example #1 MongoDB\Driver\ReadPreference::getMaxStalenessSeconds() example

<?php

$rp 
= new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_SECONDARY);
var_dump($rp->getMaxStalenessSeconds());

$rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_SECONDARYnull, [
    
'maxStalenessSeconds' => MongoDB\Driver\ReadPreference::NO_MAX_STALENESS,
]);
var_dump($rp->getMaxStalenessSeconds());

$rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_SECONDARYnull, [
    
'maxStalenessSeconds' => MongoDB\Driver\ReadPreference::SMALLEST_MAX_STALENESS_SECONDS,
]);
var_dump($rp->getMaxStalenessSeconds());

$rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_SECONDARYnull, [
    
'maxStalenessSeconds' => 1000,
]);
var_dump($rp->getMaxStalenessSeconds());

?>

The above example will output:

int(-1)
int(-1)
int(90)
int(1000)