execute() 공개 메소드

Execute the operation.
또한 보기: Executable::execute()
public execute ( MongoDB\Driver\Server $server ) : array | object
$server MongoDB\Driver\Server
리턴 array | object Command result document
예제 #1
0
 /**
  * Drop this collection.
  *
  * @see DropCollection::__construct() for supported options
  *
  * @param array $options Additional options
  *
  * @return array|object Command result document
  */
 public function drop(array $options = [])
 {
     if (!isset($options['typeMap'])) {
         $options['typeMap'] = $this->typeMap;
     }
     $operation = new DropCollection($this->databaseName, $this->collectionName, $options);
     $server = $this->manager->selectServer(new ReadPreference(ReadPreference::RP_PRIMARY));
     return $operation->execute($server);
 }