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

com.lordofthejars.nosqlunit.redis.embedded.PubSubServerOperations Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.lordofthejars.nosqlunit.redis.embedded;

import redis.clients.jedis.BinaryJedisPubSub;
import redis.clients.jedis.JedisPubSub;

public class PubSubServerOperations {

	public void psubscribe(final JedisPubSub jedisPubSub, final byte[]... patterns) {

	}

	public void psubscribe(BinaryJedisPubSub jedisPubSub, byte[]... patterns) {
		
	}
	
	public void subscribe(JedisPubSub jedisPubSub, byte[]... channels) {
		 
	}
	
	public Long publish(byte[] channel, byte[] message) {
		return 0L;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy