Files
PolyORB/examples/bbs/server.ads
Thomas Quinot df32afd2ae Kill CM Id lines, they are just a nuisance.
[Imported from Perforce change 8923 at 2006-12-01 20:59:33]

Subversion-branch: /trunk/polyorb
Subversion-revision: 36470
2004-12-17 19:12:40 +00:00

76 lines
4.1 KiB
Ada

------------------------------------------------------------------------------
-- --
-- POLYORB COMPONENTS --
-- --
-- S E R V E R --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002 Free Software Foundation, Inc. --
-- --
-- PolyORB is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. PolyORB is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public --
-- License for more details. You should have received a copy of the GNU --
-- General Public License distributed with PolyORB; see file COPYING. If --
-- not, write to the Free Software Foundation, 59 Temple Place - Suite 330, --
-- Boston, MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- PolyORB is maintained by ACT Europe. --
-- (email: sales@act-europe.fr) --
-- --
------------------------------------------------------------------------------
with Common; use Common;
package Server is
pragma Remote_Call_Interface;
-- This package can be called remotely
procedure Post_Message
(Sender : in String;
Message : in String);
-- Add a message to the BBS service. Sender_Error will be raised if the
-- sender's name is empty, Message_Error if the message is empty.
function Number_Of_Messages return Natural;
-- Return a number of messages that were posted to the BBS
function Get_Sender (N : Positive) return String;
-- Return the name of the sender of a particular message. No_Such_Message
-- will be raised if there is no such message.
function Get_Message (N : Positive) return String;
-- Return the content of a particular message. No_Such_Message will be
-- raised if there is no such message.
type Penpal_Pointer is access all Penpal_Type'Class;
-- A Penpal_Pointer can designated any descendent of the Penpal_Type type
procedure Register (Penpal : in Penpal_Pointer);
-- Register a penpal in the connected users database. Sender_Error will
-- be raised if the penpal has not been correctly initialized. If a
-- penpal with this name has been registered already, then it will be
-- replaced with the new one (to cover the case where a penpal moves
-- to another machine for example).
function Get_Penpal (Name : String) return Penpal_Pointer;
-- Return the object representing a penpal of a given type, or raise
-- No_Such_Penpal if no penpal by this name has been registered.
procedure Broadcast (Sender : in String; Message : in String);
-- Broadcast a message to every registered penpal
end Server;