Package com.facebook.presto.importer

Examples of com.facebook.presto.importer.PersistentPeriodicImportJob


    @GET
    @Path("{jobId: \\d+}")
    public Response getJob(@PathParam("jobId") long jobId)
    {
        PersistentPeriodicImportJob job = periodicImportManager.getJob(jobId);
        if (job == null) {
            return Response.status(Status.NOT_FOUND).build();
        }
        else {
            return Response.ok(job).build();
View Full Code Here

TOP

Related Classes of com.facebook.presto.importer.PersistentPeriodicImportJob

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.