Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for github issue #2220. #4497

Merged
merged 1 commit into from
May 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions doxygen/dox/VOLConnGuide.dox
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,13 @@ it may be some time before that work is complete.
\subsection subsecVOLPassthrough Passthrough Connectors
Coming Soon

Note:
Passthrough VOL connectors should avoid doing anything with the file in the open and create
callbacks except opening it. If connectors need to do anything else they should use the post
open callback (H5VL_NATIVE_FILE_POST_OPEN op_type for the file "optional" callback),
making sure to perform operations on the file only after passing the post open call down to
the terminal connector. The post open callback is made for both file open and file create calls.

\subsection subsecVOLAsync Asynchronous Operations
Coming Soon

Expand Down
Loading