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

io.quarkus.redis.runtime.datasource.DefaultRedisPubSubMessage Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.redis.runtime.datasource;

import io.quarkus.redis.datasource.pubsub.RedisPubSubMessage;

public class DefaultRedisPubSubMessage implements RedisPubSubMessage {

    private final V payload;
    private final String channel;

    public DefaultRedisPubSubMessage(V payload, String channel) {
        this.payload = payload;
        this.channel = channel;
    }

    @Override
    public V getPayload() {
        return payload;
    }

    @Override
    public String getChannel() {
        return channel;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy