ReservationCollection.FreeReservation(Int64) Método
Definição
Quando substituído em uma classe derivada, libera uma reserva do tamanho especificado.When overridden in a derived class, releases a reservation of the specified size.
protected:
abstract void FreeReservation(long size);
protected abstract void FreeReservation (long size);
abstract member FreeReservation : int64 -> unit
Protected MustOverride Sub FreeReservation (size As Long)
Parâmetros
- size
- Int64
O tamanho da reserva a ser liberada.The size of the reservation to release.
Notas aos Implementadores
Ao herdar do ReservationCollection , você deve implementar esse método para realmente liberar espaço na sequência de registros.When you inherit from ReservationCollection, you must implement this method to actually release space in the record sequence. Você não deve chamar ReservationFreed(Int64) quando esse método for concluído; essa lógica é tratada para você.You should not call ReservationFreed(Int64) when this method is complete; that logic is handled for you.
Ao liberar registros, você deve liberar os mesmos registros que você reservou em conjunto em uma chamada anterior para o ReserveAndAppend método.When you free records, you must free the same records that you reserved together in a previous call to the ReserveAndAppend method.