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

io.castled.pubsub.registry.PipelineUpdatedMessage Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.pubsub.registry;

import io.castled.pubsub.MessageType;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
public class PipelineUpdatedMessage extends Message {

    private Long pipelineId;

    public PipelineUpdatedMessage(Long pipelineId) {
        super(MessageType.PIPELINE_UPDATED);
        this.pipelineId = pipelineId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy