mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 03:31:16 +00:00
o trace request uri * GSWeb.framework/GSWTemplateParserXML.m o Changed NSDebugMLog to NSDebugMLLog o changes to conform to GSXML modifications * GSWeb.framework/GSWTemplateParser.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWBundle.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWComponent.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWElement.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWHTMLStaticElement.m o Changed NSDebugMLog to NSDebugMLLog * GSWeb.framework/GSWAssociations.m o fixes in !GDL2 variables names (reported by Piter Punk <piterpk@terra.com.br>) * GSWeb.framework/GSWRadioButtonList.m o fix _name/name in appendToResponse:inContext: * GSWeb.framework/GSWSwitchComponent.m: o fix ExceptionRaise call * GSWeb.framework/GSWDebug.m/.h: o fix ifdef and functions defs * GSWeb.framework/GSWSessionTimeOutManager.m/.h: o add parentheses around assignment used as truth value o ivar names changes to conform to coding standards * GSWeb.framework/GSWDeployedBundle.m: o cast to avoid compiler warning * GSWeb.framework/GSWJavaScript.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWEmbeddedObject.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWClientSideScript.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWApplet.h/.m: o ivar names changes to conform to coding standards * GSWeb.framework/GSWParam.h/.m: o ivar names changes to conform to coding standards git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@14026 72102866-910b-0410-8b05-ffd578937521
73 lines
2.1 KiB
Objective-C
73 lines
2.1 KiB
Objective-C
/** GSWSessionTimeOutManager.h - <title>GSWeb: Class GSWSessionTimeOutManager</title>
|
|
|
|
Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
|
|
|
Written by: Manuel Guesdon <mguesdon@sbuilders.com>
|
|
Date: Mar 1999
|
|
|
|
$Revision$
|
|
$Date$
|
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
<license>
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
</license>
|
|
**/
|
|
|
|
// $Id$
|
|
|
|
#ifndef _GSWSessionTimeOutManager_h__
|
|
#define _GSWSessionTimeOutManager_h__
|
|
|
|
|
|
//====================================================================
|
|
@interface GSWSessionTimeOutManager : NSObject
|
|
{
|
|
NSMutableArray* _sessionOrderedTimeOuts;
|
|
NSMutableDictionary* _sessionTimeOuts;
|
|
id _target;
|
|
SEL _callback;
|
|
NSTimer* _timer;
|
|
// NSRecursiveLock* _selfLock;
|
|
NSLock* _selfLock;
|
|
#ifndef NDEBUG
|
|
int _selfLockn;
|
|
#endif
|
|
};
|
|
|
|
-(id)init;
|
|
-(void)dealloc;
|
|
-(void)updateTimeOutForSessionWithID:(NSString*)sessionID
|
|
timeOut:(NSTimeInterval)timeOut;
|
|
-(void)handleTimer:(NSTimer*)timer;
|
|
-(NSTimer*)resetTimer;
|
|
-(void)addTimer:(id)timer;
|
|
-(void)removeCallBack;
|
|
-(void)setCallBack:(SEL)callback
|
|
target:(id)target;
|
|
-(void)lock;
|
|
-(void)unlock;
|
|
@end
|
|
|
|
//====================================================================
|
|
@interface GSWSessionTimeOutManager (GSWSessionRefused)
|
|
|
|
-(void)startHandleTimerRefusingSessions;
|
|
-(void)handleTimerKillingApplication:(id)timer;
|
|
-(void)handleTimerRefusingSessions:(id)timer;
|
|
|
|
@end
|
|
#endif //_GSWSessionTimeOutManager_h__
|