VaultWrite Event

Fires to write data to a callback mode vault.

Syntax

// CBDriveVaultWriteEventArgs carries the CBDrive VaultWrite event's parameters.
type CBDriveVaultWriteEventArgs struct {...}

func (args *CBDriveVaultWriteEventArgs) VaultHandle() int64
func (args *CBDriveVaultWriteEventArgs) Offset() int64
func (args *CBDriveVaultWriteEventArgs) Buffer() []byte
func (args *CBDriveVaultWriteEventArgs) Count() int32
func (args *CBDriveVaultWriteEventArgs) ResultCode() int32
func (args *CBDriveVaultWriteEventArgs) SetResultCode(value int32)

// CBDriveVaultWriteEvent defines the signature of the CBDrive VaultWrite event's handler function.
type CBDriveVaultWriteEvent func(sender *CBDrive, args *CBDriveVaultWriteEventArgs)

func (obj *CBDrive) GetOnVaultWriteHandler() CBDriveVaultWriteEvent
func (obj *CBDrive) SetOnVaultWriteHandler(handlerFunc CBDriveVaultWriteEvent)

Remarks

This event fires when the component needs to write data to the callback mode vault specified by VaultHandle.

This event only needs to be handled if the CallbackMode property is enabled; please refer to the Callback Mode topic for more information. To handle this event properly, applications must write Count bytes of data from Buffer to the vault specified by VaultHandle, starting at the specified Offset in the vault.

Count is always a multiple of the vault's PageSize. If, for any reason, an application cannot write exactly Count bytes of data to the vault, it must return an appropriate error code via ResultCode.

Please refer to the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The VaultHandle parameter contains an application-defined handle to an open callback mode vault, as returned by the application in an earlier VaultOpen event.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource isn't available, security checks failed, etc.), set it to a non-zero value to report an appropriate error. Please refer to the Error Reporting and Handling topic for more information.

Note: An application should not attempt to call component's methods from handlers of this event. Doing this is guaranteed to cause a deadlock.

Note: when a storage is opened concurrently in read-only mode by several applications using CBDrive or CBMemDrive component, the event will fire only in the first application. To prevent such a situation, always open a vault in read-write mode.

Copyright (c) 2021 Callback Technologies, Inc. - All rights reserved.
CBFS Storage 2020 Go Edition - Version 20.0 [Build 8031]