congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
FrameType.values
Code IndexAdd Tabnine to your IDE (free)

How to use
values
method
in
org.eclipse.jetty.http2.frames.FrameType

Best Java code snippets using org.eclipse.jetty.http2.frames.FrameType.values (Showing top 4 results out of 315)

origin: org.eclipse.jetty.http2/http2-common

public Parser(ByteBufferPool byteBufferPool, Listener listener, int maxDynamicTableSize, int maxHeaderSize)
{
  this.byteBufferPool = byteBufferPool;
  this.listener = listener;
  this.headerParser = new HeaderParser();
  this.hpackDecoder = new HpackDecoder(maxDynamicTableSize, maxHeaderSize);
  this.maxFrameLength = Frame.DEFAULT_MAX_LENGTH;
  this.bodyParsers = new BodyParser[FrameType.values().length];
}
origin: jenkinsci/winstone

public Parser(ByteBufferPool byteBufferPool, Listener listener, int maxDynamicTableSize, int maxHeaderSize)
{
  this.byteBufferPool = byteBufferPool;
  this.listener = listener;
  this.headerParser = new HeaderParser();
  this.hpackDecoder = new HpackDecoder(maxDynamicTableSize, maxHeaderSize);
  this.maxFrameLength = Frame.DEFAULT_MAX_LENGTH;
  this.bodyParsers = new BodyParser[FrameType.values().length];
}
origin: jenkinsci/winstone

public Generator(ByteBufferPool byteBufferPool, int maxDynamicTableSize, int maxHeaderBlockFragment)
{
  this.byteBufferPool = byteBufferPool;
  headerGenerator = new HeaderGenerator();
  hpackEncoder = new HpackEncoder(maxDynamicTableSize);
  this.generators = new FrameGenerator[FrameType.values().length];
  this.generators[FrameType.HEADERS.getType()] = new HeadersGenerator(headerGenerator, hpackEncoder, maxHeaderBlockFragment);
  this.generators[FrameType.PRIORITY.getType()] = new PriorityGenerator(headerGenerator);
  this.generators[FrameType.RST_STREAM.getType()] = new ResetGenerator(headerGenerator);
  this.generators[FrameType.SETTINGS.getType()] = new SettingsGenerator(headerGenerator);
  this.generators[FrameType.PUSH_PROMISE.getType()] = new PushPromiseGenerator(headerGenerator, hpackEncoder);
  this.generators[FrameType.PING.getType()] = new PingGenerator(headerGenerator);
  this.generators[FrameType.GO_AWAY.getType()] = new GoAwayGenerator(headerGenerator);
  this.generators[FrameType.WINDOW_UPDATE.getType()] = new WindowUpdateGenerator(headerGenerator);
  this.generators[FrameType.CONTINUATION.getType()] = null; // Never generated explicitly.
  this.generators[FrameType.PREFACE.getType()] = new PrefaceGenerator();
  this.generators[FrameType.DISCONNECT.getType()] = new DisconnectGenerator();
  this.dataGenerator = new DataGenerator(headerGenerator);
}
origin: org.eclipse.jetty.http2/http2-common

public Generator(ByteBufferPool byteBufferPool, int maxDynamicTableSize, int maxHeaderBlockFragment)
{
  this.byteBufferPool = byteBufferPool;
  headerGenerator = new HeaderGenerator();
  hpackEncoder = new HpackEncoder(maxDynamicTableSize);
  this.generators = new FrameGenerator[FrameType.values().length];
  this.generators[FrameType.HEADERS.getType()] = new HeadersGenerator(headerGenerator, hpackEncoder, maxHeaderBlockFragment);
  this.generators[FrameType.PRIORITY.getType()] = new PriorityGenerator(headerGenerator);
  this.generators[FrameType.RST_STREAM.getType()] = new ResetGenerator(headerGenerator);
  this.generators[FrameType.SETTINGS.getType()] = new SettingsGenerator(headerGenerator);
  this.generators[FrameType.PUSH_PROMISE.getType()] = new PushPromiseGenerator(headerGenerator, hpackEncoder);
  this.generators[FrameType.PING.getType()] = new PingGenerator(headerGenerator);
  this.generators[FrameType.GO_AWAY.getType()] = new GoAwayGenerator(headerGenerator);
  this.generators[FrameType.WINDOW_UPDATE.getType()] = new WindowUpdateGenerator(headerGenerator);
  this.generators[FrameType.CONTINUATION.getType()] = null; // Never generated explicitly.
  this.generators[FrameType.PREFACE.getType()] = new PrefaceGenerator();
  this.generators[FrameType.DISCONNECT.getType()] = new DisconnectGenerator();
  this.dataGenerator = new DataGenerator(headerGenerator);
}
org.eclipse.jetty.http2.framesFrameTypevalues

Popular methods of FrameType

  • from
  • getType

Popular in Java

  • Making http post requests using okhttp
  • getSystemService (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now