GoLang MongoDB\Driver\WriteConcern::getJournal

request it (297)
GoLang replacement for PHP's MongoDB\Driver\WriteConcern::getJournal [edit | history]



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

PHP MongoDB\Driver\WriteConcern::getJournal

PHP original manual for MongoDB\Driver\WriteConcern::getJournal [ show | php.net ]

MongoDB\Driver\WriteConcern::getJournal

(mongodb >=1.0.0)

MongoDB\Driver\WriteConcern::getJournalReturns the WriteConcern's "journal" option

Description

final public boolean|null MongoDB\Driver\WriteConcern::getJournal ( void )

Parameters

This function has no parameters.

Return Values

Returns the WriteConcern's "journal" option.

Errors/Exceptions

Examples

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

<?php

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

$wc = new MongoDB\Driver\WriteConcern(10true);
var_dump($wc->getJournal());

$wc = new MongoDB\Driver\WriteConcern(10false);
var_dump($wc->getJournal());

?>

The above example will output:

NULL
bool(true)
bool(false)