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

org.infinispan.cli.impl.ShellOutputStreamAdapter Maven / Gradle / Ivy

package org.infinispan.cli.impl;

import java.io.OutputStream;

import org.aesh.command.shell.Shell;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 11.0
 **/
public class ShellOutputStreamAdapter extends OutputStream {
   final Shell shell;

   public ShellOutputStreamAdapter(Shell shell) {
      this.shell = shell;
   }

   @Override
   public void write(int b) {
      shell.write(Character.toString((char)b));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy