code-examples/2014/2014_08/ada_http_server/dispatchers.ads

18 lines
492 B
Ada
Raw Normal View History

2025-03-09 11:23:51 +00:00
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Text_IO; use Ada.Text_IO;
with Gnat.Sockets; use Gnat.Sockets;
with Ada.Calendar; use Ada.Calendar;
with Ada.Containers.Vectors;
with Handlers; use Handlers;
package dispatchers is
task Dispatcher is
entry start;
-- signal to start
entry dispatch(s: Socket_Type);
-- we got accepted socket from the listener
entry stop;
-- signal to stop
end dispatcher;
end dispatchers;