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

com.davfx.ninio.common.SslReadyFactory Maven / Gradle / Ivy

There is a newer version: 1.0.99
Show newest version
package com.davfx.ninio.common;

public final class SslReadyFactory implements ReadyFactory {
	private final Trust trust;
	public SslReadyFactory(Trust trust) {
		this.trust = trust;
	}
	@Override
	public Ready create(Queue queue) {
		return new QueueReady(queue, new SslReady(trust, queue.allocator(), new SocketReady(queue.getSelector(), queue.allocator())));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy