Module: FFI::Libfuse::FuseCallbacks

Includes:
Callbacks
Included in:
FuseOperations
Defined in:
lib/ffi/libfuse/fuse_callbacks.rb

Overview

Methods to register callbacks and wrappers

Configuration collapse

Methods included from Callbacks

#register

Instance Method Details

#fuse_respond_to?(fuse_method) ⇒ Boolean

This method is abstract.

Returns true if the fuse method should be registered.

Parameters:

  • fuse_method (Symbol)

    a fuse callback method

Returns:

  • (Boolean)

    true if the fuse method should be registered



# File 'lib/ffi/libfuse/fuse_callbacks.rb', line 24

#fuse_wrappers(*wrappers) ⇒ Array

This method is abstract.

Wrappers change the behaviour/signature of the abstract fuse callback methods

Parameters:

  • wrappers (Array)

    An initial list of wrappers

Returns:

  • (Array)

    the final list of wrappers. Implementations should append or prepend to the input wrappers as appropriate

    See Callbacks#register for what constitutes a valid wrapper



# File 'lib/ffi/libfuse/fuse_callbacks.rb', line 13