Package com.wordpress.salaboy.example.persistence

Examples of com.wordpress.salaboy.example.persistence.TrackingJobInfo


        //Creates an id for the job
        String trackingId = UUID.randomUUID().toString();

        //Persist the job. This could emulate the queuing of the job for later
        //execution
        TrackingJobInfo info = new TrackingJobInfo(trackingId, vehicleId, vehicleType);
        JSONTrackingJobsPersister.getInstance().markTrackingJobAsStarted(info);

        //Return the job id
        return trackingId;
    }
View Full Code Here


        //Creates an id for the job
        String trackingId = UUID.randomUUID().toString();
       
        //Persist the job. This could emulate the queuing of the job for later
        //execution
        TrackingJobInfo info = new TrackingJobInfo(trackingId, vehicleId, vehicleType);
        JSONTrackingJobsPersister.getInstance().markTrackingJobAsStarted(info);
       
        //Return the job id
        return trackingId;
    }
View Full Code Here

TOP

Related Classes of com.wordpress.salaboy.example.persistence.TrackingJobInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.