Kestrel client module for NodeJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

5 lines
232 B

module.exports = {
ROUND_ROBIN: 'ROUND_ROBIN', //use all connections in order
RANDOM: 'RANDOM', //use all connections in random order
FAILOVER: 'FAILOVER' //use only one connection, unless there is a connection problem
}