ReceiverSyncCheckHandlerInterface

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.

Method

init

Method description

Initializes the handler

Syntax

public void init(Context context, Config handlerConfig)
              throws BCGReceiverException

Parameters

context
The context in which the handler executes
handlerConfig
Handler configuration

Method

applies

Method description

The handler returns true if it can process the request document. Otherwise it returns false.

Syntax

public boolean applies(ReceiverDocumentInterface request)
             throws BCGReceiverException

Parameters

request
The request document

Method

syncCheck

Method description

Checks to see whether the document is to be processed synchronously. The method returns true if the request is synchronous, false if asynchronous.

Syntax

public boolean syncCheck(ReceiverDocumentInterface request)
              throws BCGReceiverException

Parameters

request
The request document

Sync-check handlers are configured in the Community Console just as other handlers are.

Copyright IBM Corp. 2003, 2005