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

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

package io.split.engine.sse.dtos;

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

public class ControlNotification extends IncomingNotification implements StatusNotification {
    private final ControlType controlType;

    public ControlNotification(GenericNotificationData genericNotificationData) {
        super(Type.CONTROL, genericNotificationData.getChannel());
        this.controlType = genericNotificationData.getControlType();
    }

    public ControlType getControlType() {
        return controlType;
    }

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

    @Override
    public void handlerStatus(PushStatusTracker pushStatusTracker) {
        pushStatusTracker.handleIncomingControlEvent(this);
    }

    @Override
    public String toString() {
        return String.format("Type: %s; Channel: %s; ControlType: %s", getType(), getChannel(), getControlType());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy