Created
December 4, 2015 06:50
-
-
Save javaeeeee/53f5294c80293beb7bcd to your computer and use it in GitHub Desktop.
Jersey client settings in a Dropwizard application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #API settings | |
| #API URL | |
| apiURL: https://openexchangerates.org/api/latest.json | |
| #API key | |
| apiKey: <Your API key> | |
| #Jersey client settings | |
| jerseyClient: | |
| #The maximum idle time for a connection, once established. | |
| timeout: 512ms | |
| #The size of the work queue of the pool used for asynchronous requests. | |
| #Additional threads will be spawn only if the queue is reached its maximum size. | |
| workQueueSize: 16 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment