All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.kapua.kura.simulator.generator.Generator Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2017 Red Hat Inc and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat Inc - initial API and implementation
 *******************************************************************************/
package org.eclipse.kapua.kura.simulator.generator;

import java.time.Instant;
import java.util.Map;
import java.util.Objects;
import java.util.function.Function;

@FunctionalInterface
public interface Generator {

    public Payload update(Instant timestamp);

    public static Generator onlyMetrics(final Function> metrics) {
        Objects.requireNonNull(metrics);

        return new Generator() {

            @Override
            public Payload update(final Instant timestamp) {
                return new Payload(metrics.apply(timestamp));
            }
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy