Is it possible to get out scheduled event details by Java API

0
I am going to create a couple of pages to manage scheduled events(Job), I checked Java API, I can get out scheduled event list  by Core.getConfiguration().getMyScheduledEvents(),  Is it possible to get out scheduled event details? 
asked
2 answers
0

Dear Lui,

https://mendixcommunity.slack.com/archives/CKFARC1B2/p1589198488219600

Together squllquake, we gave it a try. but failed. There is no public API. with java inspection you can get somewhere…. but not totally there.

 com.mendix.core.Core
        .integration()
            .runtime()
                .getMainComponent()//com.mendix.basis.component.internal.LocalComponentImpl
                    .actionManager()
                        //.getFuture()//uncallable???
                        //.getBackgroundJobRegistry()//uncallable???
                        //...etc

If you need more control than the basics.. you have use an external build scheduler. 

Something link this https://appstore.home.mendix.com/link/app/435/

Or build something based on http://www.quartz-scheduler.org/

Cheers, Andries

 

answered
0

There is a page in the Administration module that you can use to view your scheduled events. It displays the System.ScheduledEventInformation entity.

answered