Top "Fifo" questions

Any structure in which the First object In is the First object Out.

FIFO class in Java

I want to implement FIFO through a class in Java. Does such a class already exist? If not, how can …

java fifo
Which STL container should I use for a FIFO?

Which STL container would fit my needs best? I basically have a 10 elements wide container in which I continually push_…

c++ stl fifo
Fixed size queue which automatically dequeues old values upon new enques

I'm using ConcurrentQueue for a shared data structure which purpose is holding the last N objects passed to it (kind …

c# queue fifo
How to work with "FIFO" in C# .NET?

Is there a standard collection in .NET that implements a FIFO stack?

c# .net fifo
Create Named Pipe C++ Windows

I am trying to create a simple comunication between 2 processes in C++ ( Windows ) like FIFO in linux. This is my …

windows c++11 ipc named-pipes fifo
Is there a queue implementation?

Can anyone suggest Go container for simple and fast FIF/queue, Go has 3 different containers: heap, list and vector. Which …

go queue fifo
Create a temporary FIFO (named pipe) in Python?

How can you create a temporary FIFO (named pipe) in Python? This should work: import tempfile temp_file_name = mktemp() …

python security file fifo mkfifo
How do I perform a non-blocking fopen on a named pipe (mkfifo)?

If I have a program which creates and attempts to open a named pipe using mkfifo, how can I open …

c linux named-pipes blocking fifo
Linux non-blocking fifo (on demand logging)

I like to log a programs output 'on demand'. Eg. the output is logged to the terminal, but another process …

linux bash logging fifo
OSError: [Errno 11] Resource temporarily unavailable. What causes this?

Background I have two python processes that need to communicate with each other. The comminication is handled by a class …

python pipe fifo