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

com.ociweb.pronghorn.network.config.HTTPHeader Maven / Gradle / Ivy

package com.ociweb.pronghorn.network.config;

import com.ociweb.pronghorn.pipe.ChannelReader;

public interface HTTPHeader {
	
    int ordinal();
    
    CharSequence readingTemplate();
    
    CharSequence writingRoot();
    
     A writeValue(A target, HTTPSpecification httpSpec, ChannelReader reader);
    
    void skipValue(ChannelReader reader);
     A consumeValue(ChannelReader reader, A target);
    long consumeValue(ChannelReader reader);
    
    byte[] rootBytes();
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy