TP-systemes-concurrents/TP4/LectRed.java

11 lines
382 B
Java
Raw Permalink Normal View History

2023-06-21 18:19:26 +00:00
// Time-stamp: <02 Apr 2008 16:26 queinnec@enseeiht.fr>
public interface LectRed {
public void demanderLecture () throws InterruptedException;
public void terminerLecture () throws InterruptedException;
public void demanderEcriture () throws InterruptedException;
public void terminerEcriture () throws InterruptedException;
public String nomStrategie ();
}