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

io.split.engine.sse.dtos.OccupancyNotification Maven / Gradle / Ivy

There is a newer version: 4.13.0
Show newest version
package io.split.engine.sse.dtos;

import io.split.engine.sse.PushStatusTracker;
import io.split.engine.sse.NotificationProcessor;

public class OccupancyNotification extends IncomingNotification implements StatusNotification {
    private final OccupancyMetrics metrics;

    public OccupancyNotification(GenericNotificationData genericNotificationData) {
        super(Type.OCCUPANCY, genericNotificationData.getChannel());
        this.metrics = genericNotificationData.getMetrics();
    }

    public OccupancyMetrics getMetrics() {
        return metrics;
    }

    @Override
    public void handler(NotificationProcessor notificationProcessor) {
        notificationProcessor.processStatus(this);
    }

    @Override
    public void handlerStatus(PushStatusTracker notificationManagerKeeper) {
        notificationManagerKeeper.handleIncomingOccupancyEvent(this);
    }

    @Override
    public String toString() {
        try {
            return String.format("Type: %s; Channel: %s; Publishers: %s", getType(), getChannel(), getMetrics().getPublishers());
        } catch (Exception ex) {
            return super.toString();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy