com.genesyslab.omsdk.qil.event
Interface QILInteractionStatusChangedEvent

All Superinterfaces:
QILInteractionEvent

public interface QILInteractionStatusChangedEvent
extends QILInteractionEvent

A QILInteractionEvent event reporting a status change in the associated interaction.

This event is propagated in the QILInteractionListener.handleInteractionEvent() method, as shown in the following code snippet:

public class SimpleInteractionExample implements QILInteractionListener{
    //...
    public void handleInteractionEvent(QILInteractionEvent event)
    {
        if(event instanceof QILInteractionStatusChangedEvent)
        {
            //Updating your application
            //with the interaction's new status.
        }
    }
}

Since:
7.1.000.00

Method Summary
 QILInteractionStatus getStatus()
          Returns the new interaction's status.
 
Methods inherited from interface com.genesyslab.omsdk.qil.event.QILInteractionEvent
getInteraction
 

Method Detail

getStatus

public QILInteractionStatus getStatus()
Returns the new interaction's status.

Returns:
the new status.