Class BaseWriteOperation

    • Constructor Detail

      • BaseWriteOperation

        public BaseWriteOperation​(MongoNamespace namespace,
                                  boolean ordered,
                                  WriteConcern writeConcern,
                                  boolean retryWrites)
        Deprecated. 
        Construct an instance
        Parameters:
        namespace - the database and collection namespace for the operation.
        ordered - whether the writes are ordered.
        writeConcern - the write concern for the operation.
        retryWrites - if writes should be retried if they fail due to a network error.
        Since:
        3.6
    • Method Detail

      • getWriteRequests

        protected abstract List<? extends WriteRequest> getWriteRequests​()
        Deprecated. 
      • getNamespace

        public MongoNamespace getNamespace​()
        Deprecated. 
        Gets the namespace of the collection to write to.
        Returns:
        the namespace
      • getWriteConcern

        public WriteConcern getWriteConcern​()
        Deprecated. 
        Gets the write concern to apply
        Returns:
        the write concern
      • isOrdered

        public boolean isOrdered​()
        Deprecated. 
        Gets whether the writes are ordered. If true, no more writes will be executed after the first failure.
        Returns:
        whether the writes are ordered
      • getBypassDocumentValidation

        public Boolean getBypassDocumentValidation​()
        Deprecated. 
        Gets the the bypass document level validation flag
        Returns:
        the bypass document level validation flag
        Since:
        3.2
        Since server release
        3.2
      • bypassDocumentValidation

        public BaseWriteOperation bypassDocumentValidation​(Boolean bypassDocumentValidation)
        Deprecated. 
        Sets the bypass document level validation flag.
        Parameters:
        bypassDocumentValidation - If true, allows the write to opt-out of document level validation.
        Returns:
        this
        Since:
        3.2
        Since server release
        3.2