Method: FCGI::Stream#flush

Defined in:
ext/fcgi/fcgi.c

#flushObject



387
388
389
390
391
392
393
394
395
# File 'ext/fcgi/fcgi.c', line 387

static VALUE fcgi_stream_flush(VALUE self)
{
  FCGX_Stream *stream;

  Data_Get_Stream(self, stream);
  if (FCGX_FFlush(stream) == EOF)
    CHECK_STREAM_ERROR(stream);
  return Qnil;
}