Configuration Methods
The configuration methods are most commonly used by cbfs internally to startup and shutdown disks. You should only have to call these methods directly for advanced use cases.
hasStarted
Returns true if the disk has been started up, false if not.
getIdentifier
Returns the unique UUID identifier for this disk.
getName
Returns the name of the disk.
getProperties
Returns the settings for the disk.
shutdown
cbfs invokes this method before the cbfs module is unloaded or during application reinit. You can implement this method as you see fit to shut down connections, sockets, etc.
startup
Start up a disk provider with the instance data it needs to start up. It must ensure that it sets the "started" variable to true to operate.
Last updated