Package com.datasift.client.preview

Examples of com.datasift.client.preview.HistoricsPreview


        m.setThreshold(threshold);
    }

    @Test
    public void testIfUserCanCreateHistoricsPreview() {
        HistoricsPreview create = datasift.preview().create(now, stream, params).sync();
        assertTrue(create.isSuccessful());

        assertEquals(create.id(), id);
//        assertEquals(create.getCreatedAt().getMillis(), createdAt.getMillis());
    }
View Full Code Here


        DataSiftConfig config = new DataSiftConfig("username", "api-key");

        final DataSiftClient datasift = new DataSiftClient(config);
        Stream stream = Stream.fromString("13e9347e7da32f19fcdb08e297019d2e");
        DateTime fiveHrsAgo = DateTime.now().minusHours(5);
        HistoricsPreview preview = datasift.preview().create(fiveHrsAgo, stream,
                new String[]{ "interaction.author.link,targetVol,hour;interaction.type,freqDist,10" }).sync();
        //can also later get the preview data
        datasift.preview().get(preview);
        //or
        datasift.preview().get(preview.id());
    }
View Full Code Here

TOP

Related Classes of com.datasift.client.preview.HistoricsPreview

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.