Package com.streamreduce.core.model

Examples of com.streamreduce.core.model.EventLog$Builder


        updateUser(user);
    }

    @Override
    public ObjectId addToEventLog(User user, String name, JSONObject value, Long timestamp) {
        EventLog eventLog = new EventLog.Builder()
                .user(user)
                .keyValue(name, value, timestamp)
                .build();
        eventLogDAO.save(eventLog);
        return eventLog.getId();
        // Fire event?
    }
View Full Code Here

TOP

Related Classes of com.streamreduce.core.model.EventLog$Builder

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.