Does TIBCO BusinessEvents expose the Thread.Sleep() API?

Does TIBCO BusinessEvents expose the Thread.Sleep() API?

book

Article ID: KB0093142

calendar_today

Updated On:

Products Versions
TIBCO BusinessEvents Enterprise Edition -
Not Applicable -

Description

Resolution:
The catalog function Engine.Sleep() available as part of the built-in catalog functions in TIBCO BusinessEvents internally calls Thread.Sleep() as indicated below:  

    public static void sleep(long millisec) {
        try {
            Thread.sleep(millisec);
        } catch (InterruptedException e) {
            e.printStackTrace();
            throw new RuntimeException(e);
        }
    }

Issue/Introduction

Does TIBCO BusinessEvents expose the Thread.Sleep() API?