Closed
Description
ability to pass true
to client.end to have the method wait until the client's internal query queue is emptied before disconnection
client.query('alskdjf')
client.end() //disconnects before query is finished
versus
client.query('lkajsdf');
client.end(true) //disconnects once query is finished