Interface ITransferContextService
- 
- All Known Subinterfaces:
- ITransferContextServiceExt
 
 public interface ITransferContextService
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidresetState()Reset data on this thread in order to revert context back on this thread once the async task is done.voidrestoreState(java.util.Map<java.lang.String,java.lang.Object> m)Set/restore data on this thread in order to preserve provider context during thread switchingvoidstoreState(java.util.Map<java.lang.String,java.lang.Object> m)store data to be transferred to another thread in order to preserve service provider context.
 
- 
- 
- 
Method Detail- 
storeStatevoid storeState(java.util.Map<java.lang.String,java.lang.Object> m) store data to be transferred to another thread in order to preserve service provider context.- Parameters:
- m- Map object to be populated with thread context data that will need to be transferred to another thread to preserve context for the transfer producer services.
 
 - 
restoreStatevoid restoreState(java.util.Map<java.lang.String,java.lang.Object> m) Set/restore data on this thread in order to preserve provider context during thread switching- Parameters:
- m- populated data that will be made available to a new thread that will need to access context for a transfer producer service.
 
 - 
resetStatevoid resetState() Reset data on this thread in order to revert context back on this thread once the async task is done.
 
- 
 
-