com.hp.hpl.jena.shared
Class LockNone

java.lang.Object
  extended by com.hp.hpl.jena.shared.LockNone
All Implemented Interfaces:
Lock

public class LockNone
extends Object
implements Lock


Field Summary
 
Fields inherited from interface com.hp.hpl.jena.shared.Lock
READ, WRITE
 
Constructor Summary
LockNone()
           
 
Method Summary
 void enterCriticalSection(boolean readLockRequested)
          Enter a critical section.
 void leaveCriticalSection()
          Leave a critical section.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LockNone

public LockNone()
Method Detail

enterCriticalSection

public void enterCriticalSection(boolean readLockRequested)
Description copied from interface: Lock
Enter a critical section. The application must call leaveCriticialSection.

Specified by:
enterCriticalSection in interface Lock
Parameters:
readLockRequested - true implies a read lock,false implies write lock.
See Also:
Lock.leaveCriticalSection()

leaveCriticalSection

public void leaveCriticalSection()
Description copied from interface: Lock
Leave a critical section. Releases the lock form the matching enterCriticalSection

Specified by:
leaveCriticalSection in interface Lock
See Also:
Lock.enterCriticalSection(boolean)


Licenced under the Apache License, Version 2.0