- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
public void close() throws IOException { try { outputStream.close(); } catch (IOException e) { cancel(); throw e; } }
public void write(final int b) throws IOException { try { outputStream.write(b); } catch (IOException e) { cancel(); throw e; } }
public void write(final byte[] b) throws IOException { try { outputStream.write(b); } catch (IOException e) { cancel(); throw e; } }
public void write(final byte[] b, final int off, final int len) throws IOException { try { outputStream.write(b, off, len); } catch (IOException e) { cancel(); throw e; } }
public void close() throws IOException { try { outputStream.close(); } catch (IOException e) { cancel(); throw e; } }
public void flush() throws IOException { try { outputStream.flush(); } catch (IOException e) { cancel(); throw e; } }
public void write(final int b) throws IOException { try { outputStream.write(b); } catch (IOException e) { cancel(); throw e; } }
public void write(final byte[] b) throws IOException { try { outputStream.write(b); } catch (IOException e) { cancel(); throw e; } }
public void flush() throws IOException { try { outputStream.flush(); } catch (IOException e) { cancel(); throw e; } }
public void write(final byte[] b, final int off, final int len) throws IOException { try { outputStream.write(b, off, len); } catch (IOException e) { cancel(); throw e; } }