示例#1
0
 private ThreadStart StartAnotherTransaction()
 {
     return(() =>
     {
         using (InternalTransaction ignored = Database.beginTransaction(KernelTransaction.Type.@implicit, LoginContext.AUTH_DISABLED, 1, TimeUnit.SECONDS))
         {
             Node node = Database.getNodeById(NODE_ID);
             node.setProperty("c", "d");
         }
     });
 }