代码搜索:Notify
找到约 4,184 项符合「Notify」的源代码
代码结果 4,184
www.eeworm.com/read/349342/10834463
cpp main.cpp
//main.cpp
#include "Subject.h"
#include "Observer.h"
#include
using namespace std;
int main(int argc,char* argv[])
{
ConcreteSubject* sub = new ConcreteSubject();
Observe
www.eeworm.com/read/349276/10839285
pas msi_diskmonitor.pas
//{$DEFINE TRIAL} // delete this line to remove nag screen
{*******************************************************}
{ }
{ MiTeC Syste
www.eeworm.com/read/271686/10984241
txt 分布式对话服务器的管理(3).txt
作者:运气
email: webmaster@chinaspx.com
日期:7/4/2001 1:41:45 PM
当添加或删除一个Memory对象时,经过同步的本地Mnemosyne对象需要对所有的Mnemosyne进行更新,可以通过notify()方法来完成这一任务。无论是发生write或take事件,Mnemosyne都会针对发生的事件调用适当的监听者的notify()方法。在s
www.eeworm.com/read/417385/10992125
java notifiable.java
package server;
//定义接口Notifiable,其中只有一种方法notif()用于回调
import java.rmi.*;
public interface Notifiable extends Remote {
public void notify (Integer reason) throws RemoteException ;
}
www.eeworm.com/read/470656/6905546
java chatinterface.java
import java.rmi.*;
public interface ChatInterface extends Remote {
public void join(Notify n, String name) throws RemoteException;
public void talk(String name, String s) throws R
www.eeworm.com/read/470656/6905547
java serverlist.java
import java.lang.*;
import java.util.*;
class ServerList {
private Collection threadList =
new ArrayList();
private int counter = 0;
// Get the lock on t
www.eeworm.com/read/470656/6905548
java main.java
import java.rmi.*;
import java.rmi.server.*;
import java.lang.*;
import java.util.*;
public class Main extends UnicastRemoteObject implements ChatInterface {
private ServerList se
www.eeworm.com/read/110375/7074433
prg main.prg
set talk off
set esca off
set echo off
set date ansi
set cent on
set hour to 24
_screen.visible=.f.
on shutdown do shutdown
set notify off
clea all
close all
clear
*_screen.picture="back.b
www.eeworm.com/read/110375/7074456
bak main.bak
set talk off
set esca off
set echo off
set date ansi
set cent on
set hour to 24
_screen.visible=.f.
*on shutdown do shutdown
set notify off
clea all
close all
clear
*_screen.picture="back.
www.eeworm.com/read/332978/7142083
java notifyvsnotifyall.java
//: concurrency/NotifyVsNotifyAll.java
import java.util.concurrent.*;
import java.util.*;
class Blocker {
synchronized void waitingCall() {
try {
while(!Thread.interrupted()) {