List of usage examples for io.netty.buffer ByteBufAllocator DEFAULT
ByteBufAllocator DEFAULT
To view the source code for io.netty.buffer ByteBufAllocator DEFAULT.
Click Source Link
From source file:org.onosproject.openflow.controller.impl.OFMessageDecoderTest.java
License:Apache License
@Before public void setUp() { buf = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.api.impl.ActionDeserializerTest.java
License:Open Source License
@Before public void setUp() { actionDeserializer = new ActionDeserializer(VERSION); buffer = ByteBufAllocator.DEFAULT.buffer(); providers = new LinkedList<>(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.AbstractActionCodecTest.java
License:Open Source License
@Before public void setUp() { buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.ConntrackCodecTest.java
License:Open Source License
@Before public void setUp() { conntrackCodec = new ConntrackCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.LearnCodecTest.java
License:Open Source License
@Before public void setUp() { learnCodec = new LearnCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.MultipathCodecTest.java
License:Open Source License
@Before public void setUp() { multipathCodec = new MultipathCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.OutputRegCodecTest.java
License:Open Source License
@Before public void setUp() { outRegCodec = new OutputRegCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.RegLoadCodecTest.java
License:Open Source License
@Before public void setUp() { regLoadCodec = new RegLoadCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.RegMoveCodecTest.java
License:Open Source License
@Before public void setUp() { regMoveCodec = new RegMoveCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }
From source file:org.opendaylight.openflowjava.nx.codec.action.ResubmitCodecTest.java
License:Open Source License
@Before public void setUp() { resubmitCodec = new ResubmitCodec(); buffer = ByteBufAllocator.DEFAULT.buffer(); }