add() private method

private add ( DbTran tran ) : void
tran DbTran
return void
Exemplo n.º 1
0
        /*加盟(到某一个事务当中)*/
        public DbTran join(DbTranQueue queue)
        {
            if (queue != null) {
                this.queue = queue;
                queue.add(this);
            }

            return this;
        }
Exemplo n.º 2
0
        /*加盟(到某一个事务当中)*/
        public DbTran join(DbTranQueue queue)
        {
            if (queue != null)
            {
                this.queue = queue;
                queue.add(this);
            }

            return(this);
        }