Up
Authors
- Manuel Guesdon (
mguesdon@orange-concept.com)
-
Date: Generated at 2025-12-01
Copyright: (C) 1999-2003 Free Software Foundation, Inc.
- Declared in:
- WebObjects/GSWAdaptor.h
Availability: OpenStep
GSWAdaptor is the base class for all adaptors in
GSWeb applications. Adaptors serve as the bridge
between web servers and GSWeb applications, handling
the communication protocol and request/response
processing. They are responsible for receiving
HTTP requests from web servers, converting them into
GSWeb request objects, and sending back the appropriate
responses. Different adaptor implementations can
support various web server interfaces and deployment
configurations.
- (BOOL)
dispatchesRequestsConcurrently;
Availability: OpenStep
Returns whether the adaptor can handle multiple
requests concurrently. Adaptors that return
YES can process multiple requests
simultaneously, while those returning
NO must process requests sequentially.
- (BOOL)
doesBusyRunOnce;
Availability: OpenStep
Deprecated method that returns whether the
adaptor is busy processing a single request. This
method has been deprecated along with runOnce.
- (id)
initWithName: (
NSString*)name
arguments: (
NSDictionary*)arguments;
Availability: OpenStep
Initializes a new adaptor instance with the
specified name and configuration
arguments. The name typically
identifies the adaptor type, while the
arguments dictionary contains
configuration parameters specific to the
adaptor implementation.
- (BOOL)
isMultiThreadEnabled;
Availability: OpenStep
Deprecated method that returns whether
multi-threading is enabled for the adaptor.
This method has been deprecated in favor of
dispatchesRequestsConcurrently.
- (int)
port;
Availability: OpenStep
Returns the port number on which the adaptor is
listening for incoming requests. This is
typically used for network-based communication
with web servers.
- (void)
registerForEvents;
Availability: OpenStep
Registers the adaptor to receive system events
and notifications. This method sets up the necessary
event handling mechanisms for the adaptor to function
properly within the web server environment.
Not implemented (as of 2025-12-01).
Please help us by producing an implementation of
this and donating it to the GNUstep project.
- (void)
runOnce;
Availability: OpenStep
Deprecated method that processes a single
request cycle. This method has been deprecated in
favor of more sophisticated request handling
mechanisms.
Not implemented (as of 2025-12-01).
Please help us by producing an implementation of
this and donating it to the GNUstep project.
- (void)
unregisterForEvents;
Availability: OpenStep
Unregisters the adaptor from system events and
notifications. This method cleans up event
handling resources and should be called when the
adaptor is being shut down or destroyed.
Not implemented (as of 2025-12-01).
Please help us by producing an implementation of
this and donating it to the GNUstep project.
- Declared in:
- WebObjects/GSWAdaptor.h
Availability: OpenStep
Category containing deprecated functionality for
GSWAdaptor. This category provides legacy methods
that were used in older versions of GSWeb but have since
been superseded by more modern approaches to adaptor
configuration and port management.
- (void)
registerPort: (int)port
forApplicationNamed: (
NSString*)applicationName;
Availability: OpenStep
Deprecated method that registers a specific
port for an application with the given
name. This method was used in earlier versions for
port management but has been replaced by
more sophisticated configuration mechanisms.
Up