dave
10/29/2018, 4:05 PMquii
10/29/2018, 4:08 PMquii
10/29/2018, 4:08 PMgypsydave5
10/29/2018, 4:09 PMgypsydave5
10/29/2018, 4:09 PMgypsydave5
10/29/2018, 4:10 PMNarayan Iyer
10/29/2018, 8:00 PMHttp4K
uses coroutines
? Is it Asynchronous
?dave
10/29/2018, 8:15 PMcurrently
. It is blocking
and currently
outperforms several asynchronous frameworks in the tech empower benchmarks.dave
10/29/2018, 8:15 PMNarayan Iyer
10/29/2018, 8:16 PMasynchronous
?dave
10/29/2018, 8:16 PMdave
10/29/2018, 8:16 PMNarayan Iyer
10/29/2018, 8:17 PMdave
10/29/2018, 8:23 PMdave
10/29/2018, 8:24 PMRichyHBM
10/30/2018, 9:03 AMdave
10/30/2018, 9:04 AMRichyHBM
10/30/2018, 9:04 AMgypsydave5
10/30/2018, 9:50 AMgypsydave5
10/30/2018, 9:50 AMgypsydave5
10/30/2018, 9:53 AMdave
10/30/2018, 9:59 AMdave
10/30/2018, 9:59 AMgypsydave5
10/30/2018, 9:59 AMXavier Hanin
11/05/2018, 6:07 AMdave
11/05/2018, 6:24 AMdave
11/05/2018, 6:27 AMdave
11/05/2018, 6:29 AMXavier Hanin
11/05/2018, 8:04 AMarve
11/07/2018, 3:24 PM{browser} -> [Endpoint] -> [BusinessLogic] -> [ExternalServiceClient] -> {external server}
Having all the methods in [businessLogic] and [ExternalServiceClient] take an additional parameter token:String
, feels is pretty un-elegant, so I was considering options to be able to set this token "globally" during the start of a request, and then clean it up afterwards. ThreadLocal came to mind, but I'm not sure if my assumption holds 😛 Any suggestions are welcome!