This interface describes the methods that all syncCheck handlers must implement:
Sync-check handlers are configured in the Community Console just as other handlers are.
init
Initializes the handler
public void init(Context context, Config handlerConfig) throws BCGReceiverException
applies
The handler returns true if it can process the request document. Otherwise it returns false.
public boolean applies(ReceiverDocumentInterface request) throws BCGReceiverException
syncCheck
Checks to see whether the document is to be processed synchronously. The method returns true if the request is synchronous, false if asynchronous.
public boolean syncCheck(ReceiverDocumentInterface request) throws BCGReceiverException