Exemple #1
0
    static void Main(String[] args)
    {
        LBM.setConfigurationXml(xml_conf, app_name);

        LBMContextAttributes ctxAttrOne = new LBMContextAttributes();

        ctxAttrOne.setFromXml("TRD1");
        LBMContext ctxOne = new LBMContext(ctxAttrOne);

        LBMContextAttributes ctxAttrTwo = new LBMContextAttributes();

        ctxAttrTwo.setFromXml("TRD2");
        LBMContext ctxTwo = new LBMContext(ctxAttrTwo);

        ctxOne.close();
        ctxTwo.close();
    }