I want to replace the ResponseDeserializer but that does not work:
new RestDispatchAsyncModule.Builder().core().responseDeserializer(xxx)
From the call hierarchy at configure() time, one can see that
configureDispatch()
calls builder.getCoreModule()
calls core(), which creates a new CoreModuleBuilder object so all settings made through the call of responseDeserializer or other methods is lost.
I want to replace the ResponseDeserializer but that does not work:
new RestDispatchAsyncModule.Builder().core().responseDeserializer(xxx)
From the call hierarchy at configure() time, one can see that
configureDispatch()
callsbuilder.getCoreModule()
callscore()
, which creates a new CoreModuleBuilder object so all settings made through the call ofresponseDeserializer
or other methods is lost.