Class Wire
- java.lang.Object
-
- org.apache.hc.core5.testing.classic.Wire
-
public class Wire extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Wire(org.slf4j.Logger log, java.lang.String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
input(byte[] b)
void
input(byte[] b, int pos, int off)
void
input(int b)
void
input(java.nio.ByteBuffer b)
boolean
isEnabled()
void
output(byte[] b)
void
output(byte[] b, int pos, int off)
void
output(int b)
void
output(java.nio.ByteBuffer b)
private void
wire(java.lang.String header, byte[] b, int pos, int off)
-
-
-
Method Detail
-
wire
private void wire(java.lang.String header, byte[] b, int pos, int off)
-
isEnabled
public boolean isEnabled()
-
output
public void output(byte[] b, int pos, int off)
-
input
public void input(byte[] b, int pos, int off)
-
output
public void output(byte[] b)
-
input
public void input(byte[] b)
-
output
public void output(int b)
-
input
public void input(int b)
-
output
public void output(java.nio.ByteBuffer b)
-
input
public void input(java.nio.ByteBuffer b)
-
-