public interface ProcessingFramework
The ProcessingFramework processes all requests submitted to it. A Request is converted to the appropriate data recognized by the ProcessingFramework.
Available requests for processing are as follows:
ProcessRequest
ProcessRequest
ProcessRequest
| Modifier and Type | Method and Description |
|---|---|
void |
submitCreate(ProcessRequest<ProcessCreateItem> input)
Submits a
ProcessRequest to be processed by the ProcessingFramework. |
void |
submitDelete(ProcessRequest<ProcessDeleteItem> input)
Submits a
ProcessRequest to be processed by the ProcessingFramework. |
void |
submitUpdate(ProcessRequest<ProcessUpdateItem> input)
Submits a
ProcessRequest to be processed by the ProcessingFramework. |
void submitCreate(ProcessRequest<ProcessCreateItem> input)
ProcessRequest to be processed by the ProcessingFramework. Processing on the ProcessRequest will never
block.input - the ProcessRequest to be processedvoid submitUpdate(ProcessRequest<ProcessUpdateItem> input)
ProcessRequest to be processed by the ProcessingFramework. Processing on the ProcessRequest will never
block.input - the ProcessRequest to be processedvoid submitDelete(ProcessRequest<ProcessDeleteItem> input)
ProcessRequest to be processed by the ProcessingFramework. Processing on the ProcessRequest will never
block.input - the ProcessDeleteRequest to be processedThis work is licensed under a Creative Commons Attribution 4.0 International License.