This section is used to specify the method in the class which acts as continuing transaction for consumer Tier.
package com.packagename;
public class ConsumerClassName {
     private void receive(Stream inStream) {
         CustomPayload customPayload = inStream.readObject();
         continuingTransaction(customPayload);
     }
    private void continuingTransaction(CustomPayload payload) {
         payload.getMessage();
     }
}
In the example above the method 'continuingTransaction(CustomPayload payload)' of class 'com.packagename.ConsumerClassName' is the place where the action is scheduled.
Values to put in this section of the tool for the above example:
Match Type: Matches Class
Full Class Name: com.yourpackagename.ConsumerClassName
Method Name: continuingTransaction
Method Parameters: CustomPayload payload