Uses of Interface
org.cojen.dirmi.Pipe

  • Uses of Pipe in org.cojen.dirmi

    Methods in org.cojen.dirmi with parameters of type Pipe
    Modifier and Type
    Method
    Description
    default T
    Pipe.Decoder.decode(T object, int length, Pipe pipe)
    Called to decode an object when the requested length was too large.
    default void
    Pipe.Encoder.encode(T object, int length, Pipe pipe)
    Called to encode an object when the requested length was too large.
    Serializer.read(Pipe pipe)
    Reads an object from the pipe.
    default void
    Serializer.skip(Pipe pipe, Consumer<Object> remoteConsumer)
    Skip an object instead of reading it.
    void
    Serializer.write(Pipe pipe, Object obj)
    Writes a non-null object to the pipe.