#------------------------------------------------------------------------------# # List of drivers this client may connect to # #------------------------------------------------------------------------------# jppf.drivers = HelloServer #------------------------------------------------------------------------------# # Host name, or ip address, of the host the JPPF driver is running on # #------------------------------------------------------------------------------# HelloServer.jppf.server.host = localhost #------------------------------------------------------------------------------# # port number for the class server that performs remote class loading # # default value is 11111; uncomment to specify a different value # #------------------------------------------------------------------------------# HelloServer.class.server.port = 11111 #------------------------------------------------------------------------------# # port number the clients / applications connect to # # default value is 11112; uncomment to specify a different value # #------------------------------------------------------------------------------# HelloServer.app.server.port = 11112 #------------------------------------------------------------------------------# # Enable local execution of tasks? Default value is false # #------------------------------------------------------------------------------# jppf.local.execution.enabled = false #------------------------------------------------------------------------------# # Number of threads to use for loacal execution # # The default value is the number of CPUs available to the JVM # #------------------------------------------------------------------------------# jppf.local.execution.threads = 2 #------------------------------------------------------------------------------# # JMX management port of the driver # # default value is 11198; uncomment to specify a different value # #------------------------------------------------------------------------------# #jppf.management.port = 11098 #jppf.management.enabled = false #------------------------------------------------------------------------------# # Priority given to the driver # # The client is always connected to the available driver(s) with the highest # # priority. If multiple drivers have the same priority, they will be used as a # # pool and tasks will be evenly distributed among them. # # default value is 0; uncomment to specify a different value # #------------------------------------------------------------------------------# #HelloServer.priority = 10 #------------------------------------------------------------------------------# # Maximum time in milliseconds spent trying to initialize at least one # # connection, before releasing control to the main application thread. # # default value is 1000 (1 second); uncomment to specify a different value # #------------------------------------------------------------------------------# #jppf.client.max.init.time = 1000 #------------------------------------------------------------------------------# # Automatic recovery: number of seconds before the first reconnection attempt. # # default value is 1; uncomment to specify a different value # #------------------------------------------------------------------------------# #reconnect.initial.delay = 1 #------------------------------------------------------------------------------# # Automatic recovery: time after which the system stops trying to reconnect, # # in seconds. # # default value is 60; uncomment to specify a different value # #------------------------------------------------------------------------------# #reconnect.max.time = -1 #------------------------------------------------------------------------------# # Automatic recovery: time between two connection attempts, in seconds. # # default value is 1; uncomment to specify a different value # #------------------------------------------------------------------------------# #reconnect.interval = 1