TxMountPointRegistry
usages
// create a new mountpoint object with a given name 'GITHUB:G1'
mountpoint = TxMountPointRegistry.instance.create('GITHUB::G1');// add a mountpoint object with the name 'GITHUB:G1' into the registry
let mountpoint = new TxMountPoint('GITHUB::G1');
TxMountPointRegistry.instance.add(mountpoint.name, mountpoint);// create a new mountpoint object with a given name 'GITHUB:G1'
mountpoint = TxMountPointRegistry.instance.get('GITHUB::G1');Last updated