Package com.datasift.client.historics

Examples of com.datasift.client.historics.HistoricsStatus


        assertTrue(stop_query.isSuccessful());
    }

    @Test
    public void testIfUserCanCheckIntervalStatus() {
        HistoricsStatus status = datasift.historics().status(start, end, source).sync();
        assertTrue(status.isSuccessful());

        assertEquals(status.getStart(), start.getMillis());
        assertEquals(status.getEnd(), end.getMillis());
        assertEquals(status.getSources(), sources);
    }
View Full Code Here

TOP

Related Classes of com.datasift.client.historics.HistoricsStatus

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.