Customer Portal

Progress Indicator on Transform

Comments 1

  • Avatar
    mzatopek
    0
    Comment actions Permalink
    Hi,

    first of all you shouldn't use this type of statement

    while (result.isDone()) {;}

    This is active waiting and really undesirable. Probably it takes most of your processing time. For this purpose, please use

    result.get()

    This method returns immediately the result of graph is available.

    Regarding your question, probably the best starting point for your studying is our class TrackingLogger, which is simple NotificationListener. You can register your own listener and via this object you will be informed about everything what happening in the running graph.

    Martin

Please sign in to leave a comment.