Opens an object in an HDF5 file using its VOL independent token
Procedure:
H5O_OPEN_BY_TOKEN ( loc_id, token )
Signature:
hid_t H5Oopen_by_token ( hid_t loc_id, H5O_token_t token )
SUBROUTINE h5oopen_by_token_f(loc_id, token, obj_id, hdferr)
IMPLICIT NONE
INTEGER(HID_T) , INTENT(IN) :: loc_id
TYPE(H5O_TOKEN_T_F), INTENT(IN) :: token
INTEGER(HID_T) , INTENT(OUT) :: obj_id
INTEGER , INTENT(OUT) :: hdferr
Parameters:
hid_t loc_id | IN: Location identifier of object |
H5O_token_t token | IN: Object token |
Description:
H5O_OPEN_BY_TOKEN opens an object specified by the object identifier, loc_id
and object token, token
.
Returns:
Returns an open object identifier on success.
Returns H5I_INVALID_HID on failure.
Example:
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
History:
Release | Change |
---|
1.12.0 | Function introduced in this release. |
--- Last Modified: March 17, 2020 | 12:02 PM