Platform SDK: Transaction Server |
ISharedPropertyGroupManager.getGroup, ISharedPropertyGroup.getProperty Methods Example
[This product will work only on Windows NT 4.0 versions and earlier. For Windows 2000 and later, see COM+ (Component Services).]
import com.ms.mtx.*; ISharedPropertyGroupManager propGpMgr = null; ISharedPropertyGroup propGp = null; ISharedProperty propNextNum = null; Variant vNext; int iNextValue = 0; // Get the SharedPropertyGroupManager, // SharedPropertyGroup, and SharedProperty. propGpMgr = new SharedPropertyGroupManager(); propGp = propGpMgr.getGroup("Counter"); propNextNum = propGp.getProperty("NextNum"); // Get the next number and increment it. VariantInit(&vNext); vNext = propNextNum.getValue(); iNextValue = vNext.getInt(); vNext.putInt(iNextValue + 1); propNextNum.putValue(vNext);