Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
file_wrapper Class Reference

Public Member Functions

def __init__
 
def recv
 
def send
 
def close
 
def fileno
 

Data Fields

 fd
 

Static Public Attributes

 read = recv
 
 write = send
 

Detailed Description

Definition at line 517 of file asyncore.py.

Constructor & Destructor Documentation

def __init__ (   self,
  fd 
)

Definition at line 520 of file asyncore.py.

521  def __init__ (self, fd):
522  self.fd = fd

Member Function Documentation

def close (   self)

Definition at line 532 of file asyncore.py.

References file_wrapper.fd.

533  def close (self):
534  return os.close (self.fd)
def fileno (   self)

Definition at line 535 of file asyncore.py.

References file_wrapper.fd.

536  def fileno (self):
537  return self.fd
class file_dispatcher (dispatcher):
def recv (   self,
  args 
)

Definition at line 523 of file asyncore.py.

References file_wrapper.fd.

524  def recv (self, *args):
525  return apply (os.read, (self.fd,)+args)
def send (   self,
  args 
)

Definition at line 526 of file asyncore.py.

References file_wrapper.fd.

527  def send (self, *args):
528  return apply (os.write, (self.fd,)+args)

Field Documentation

fd

Definition at line 521 of file asyncore.py.

read = recv
static

Definition at line 529 of file asyncore.py.

write = send
static

Definition at line 530 of file asyncore.py.


The documentation for this class was generated from the following file: