代码搜索:Wrox
找到约 2,023 项符合「Wrox」的源代码
代码结果 2,023
www.eeworm.com/read/184988/5242885
java basictopicsubscriber.java
package com.wrox.pubsub;
import javax.naming.*;
import javax.jms.*;
public class BasicTopicSubscriber
{
protected TopicConnection _connection =null;
protected TopicSession _session =
www.eeworm.com/read/184988/5242923
java poolablethread.java
//PoolableThread.java
package com.wrox.threadpool;
class PoolableThread extends Thread {
Runnable task = null;
ThreadPool pool;
PoolableThread(ThreadPool pool) {
this.pool = pool;
}
www.eeworm.com/read/184988/5242940
java httpconstants.java
// HTTPConstants.java
package com.wrox.httpserver;
/**
* This class defines non-locale specific constants for the
* HTTP classes.
*/
abstract class HTTPConstants {
// Resource error
www.eeworm.com/read/184988/5242946
java httpfileobject.java
// HTTPFileObject.java
package com.wrox.httpserver;
import java.io.*;
/**
* Encapsulates a requested file resource object.
*/
class HTTPFileObject extends HTTPObject {
/**
* Con
www.eeworm.com/read/184988/5242947
java httpprocessobject.java
// HTTPProcessObject.java
package com.wrox.httpserver;
import java.io.*;
/**
* Encapsulates a CGI process.
*/
class HTTPProcessObject extends HTTPObject implements Runnable {
private
www.eeworm.com/read/184988/5242956
java httpbufferedinputstream.java
// HTTPBufferedInputStream.java
package com.wrox.httpserver;
import java.io.*;
/**
* This class is a buffered input stream that allows to read lines as well
* as bytes which is useful for
www.eeworm.com/read/184988/5242964
java httpconstants.java
// HTTPConstants.java
package com.wrox.httpserver;
/**
* This class defines non-locale specific constants for the
* HTTP classes.
*/
abstract class HTTPConstants {
// Resource error
www.eeworm.com/read/184988/5242970
java httpfileobject.java
// HTTPFileObject.java
package com.wrox.httpserver;
import java.io.*;
/**
* Encapsulates a requested file resource object.
*/
class HTTPFileObject extends HTTPObject {
/**
* Con
www.eeworm.com/read/184988/5242971
java httpprocessobject.java
// HTTPProcessObject.java
package com.wrox.httpserver;
import java.io.*;
/**
* Encapsulates a CGI process.
*/
class HTTPProcessObject extends HTTPObject implements Runnable {
private
www.eeworm.com/read/184988/5242983
java httpbufferedinputstream.java
// HTTPBufferedInputStream.java
package com.wrox.httpserver;
import java.io.*;
/**
* This class is a buffered input stream that allows to read lines as well
* as bytes which is useful for