1.0.0

org.eclipse.soda.dk.serial.connection.service
Interface SerialConnectionService

All Superinterfaces:
ConnectionService
All Known Implementing Classes:
SerialConnection

public interface SerialConnectionService
extends ConnectionService

Version:
1.0.0

Field Summary
static java.lang.String BAUDRATE_KEY
          Define the baudrate key (String) constant.
static java.lang.String COMPORT_KEY
          Define the comport key (String) constant.
static java.lang.String CONNECTION_TYPE
          Define the connection type (String) constant.
static int DATABITS_5
          Define the databits5 (int) constant.
static int DATABITS_6
          Define the databits6 (int) constant.
static int DATABITS_7
          Define the databits7 (int) constant.
static int DATABITS_8
          Define the databits8 (int) constant.
static java.lang.String DATABITS_KEY
          Define the databits key (String) constant.
static int DEFAULT_BAUDRATE
          Define the default baudrate (int) constant.
static int DEFAULT_COMPORT
          Define the default comport (int) constant.
static int DEFAULT_DATABITS
          Define the default databits (int) constant.
static int DEFAULT_HARDWAREFLOWCONTROL
          Define the default hardwareflowcontrol (int) constant.
static int DEFAULT_PARITY
          Define the default parity (int) constant.
static int DEFAULT_READINTERVALTIMEOUT
          Define the default readintervaltimeout (int) constant.
static int DEFAULT_READTOTALTIMEOUT
          Define the default readtotaltimeout (int) constant.
static int DEFAULT_SOFTWAREFLOWCONTROL
          Define the default softwareflowcontrol (int) constant.
static int DEFAULT_STOPBITS
          Define the default stopbits (int) constant.
static int DEFAULT_WRITETOTALTIMEOUT
          Define the default writetotaltimeout (int) constant.
static java.lang.String FACTORY_SERVICE_NAME
          Define the OSGi factory service name.
static java.lang.String HARDWAREFLOWCONTROL_KEY
          Define the hardwareflowcontrol key (String) constant.
static int PARITY_EVEN
          Define the parity even (int) constant.
static java.lang.String PARITY_KEY
          Define the parity key (String) constant.
static int PARITY_MARK
          Define the parity mark (int) constant.
static int PARITY_NONE
          Define the parity none (int) constant.
static int PARITY_ODD
          Define the parity odd (int) constant.
static int PARITY_SPACE
          Define the parity space (int) constant.
static java.lang.String READINTERVALTIMEOUT_KEY
          Define the readintervaltimeout key (String) constant.
static java.lang.String READTOTALTIMEOUT_KEY
          Define the readtotaltimeout key (String) constant.
static java.lang.String SERVICE_NAME
          Define the OSGi service name.
static java.lang.String SOFTWAREFLOWCONTROL_KEY
          Define the softwareflowcontrol key (String) constant.
static int STOPBITS_1
          Define the stopbits1 (int) constant.
static int STOPBITS_1_5
          Define the stopbits15 (int) constant.
static int STOPBITS_2
          Define the stopbits2 (int) constant.
static java.lang.String STOPBITS_KEY
          Define the stopbits key (String) constant.
static java.lang.String WRITETOTALTIMEOUT_KEY
          Define the writetotaltimeout key (String) constant.
 
Fields inherited from interface org.eclipse.soda.dk.connection.service.ConnectionService
CONNECTION_KEY, DEFAULT_CONNECTION
 
Method Summary
 
Methods inherited from interface org.eclipse.soda.dk.connection.service.ConnectionService
close, exit, flush, isOpen, open, read, read, write, write
 

Field Detail

FACTORY_SERVICE_NAME

static final java.lang.String FACTORY_SERVICE_NAME
Define the OSGi factory service name.

See Also:
Constant Field Values

SERVICE_NAME

static final java.lang.String SERVICE_NAME
Define the OSGi service name.

See Also:
Constant Field Values

CONNECTION_TYPE

static final java.lang.String CONNECTION_TYPE
Define the connection type (String) constant.

See Also:
Constant Field Values

PARITY_NONE

static final int PARITY_NONE
Define the parity none (int) constant.

See Also:
Constant Field Values

PARITY_EVEN

static final int PARITY_EVEN
Define the parity even (int) constant.

See Also:
Constant Field Values

PARITY_ODD

static final int PARITY_ODD
Define the parity odd (int) constant.

See Also:
Constant Field Values

PARITY_MARK

static final int PARITY_MARK
Define the parity mark (int) constant.

See Also:
Constant Field Values

PARITY_SPACE

static final int PARITY_SPACE
Define the parity space (int) constant.

See Also:
Constant Field Values

STOPBITS_1

static final int STOPBITS_1
Define the stopbits1 (int) constant.

See Also:
Constant Field Values

STOPBITS_1_5

static final int STOPBITS_1_5
Define the stopbits15 (int) constant.

See Also:
Constant Field Values

STOPBITS_2

static final int STOPBITS_2
Define the stopbits2 (int) constant.

See Also:
Constant Field Values

DATABITS_5

static final int DATABITS_5
Define the databits5 (int) constant.

See Also:
Constant Field Values

DATABITS_6

static final int DATABITS_6
Define the databits6 (int) constant.

See Also:
Constant Field Values

DATABITS_7

static final int DATABITS_7
Define the databits7 (int) constant.

See Also:
Constant Field Values

DATABITS_8

static final int DATABITS_8
Define the databits8 (int) constant.

See Also:
Constant Field Values

COMPORT_KEY

static final java.lang.String COMPORT_KEY
Define the comport key (String) constant.

See Also:
Constant Field Values

DEFAULT_COMPORT

static final int DEFAULT_COMPORT
Define the default comport (int) constant.

See Also:
Constant Field Values

BAUDRATE_KEY

static final java.lang.String BAUDRATE_KEY
Define the baudrate key (String) constant.

See Also:
Constant Field Values

DEFAULT_BAUDRATE

static final int DEFAULT_BAUDRATE
Define the default baudrate (int) constant.

See Also:
Constant Field Values

DATABITS_KEY

static final java.lang.String DATABITS_KEY
Define the databits key (String) constant.

See Also:
Constant Field Values

DEFAULT_DATABITS

static final int DEFAULT_DATABITS
Define the default databits (int) constant.

See Also:
Constant Field Values

PARITY_KEY

static final java.lang.String PARITY_KEY
Define the parity key (String) constant.

See Also:
Constant Field Values

DEFAULT_PARITY

static final int DEFAULT_PARITY
Define the default parity (int) constant.

See Also:
Constant Field Values

STOPBITS_KEY

static final java.lang.String STOPBITS_KEY
Define the stopbits key (String) constant.

See Also:
Constant Field Values

DEFAULT_STOPBITS

static final int DEFAULT_STOPBITS
Define the default stopbits (int) constant.

See Also:
Constant Field Values

HARDWAREFLOWCONTROL_KEY

static final java.lang.String HARDWAREFLOWCONTROL_KEY
Define the hardwareflowcontrol key (String) constant.

See Also:
Constant Field Values

DEFAULT_HARDWAREFLOWCONTROL

static final int DEFAULT_HARDWAREFLOWCONTROL
Define the default hardwareflowcontrol (int) constant.

See Also:
Constant Field Values

SOFTWAREFLOWCONTROL_KEY

static final java.lang.String SOFTWAREFLOWCONTROL_KEY
Define the softwareflowcontrol key (String) constant.

See Also:
Constant Field Values

DEFAULT_SOFTWAREFLOWCONTROL

static final int DEFAULT_SOFTWAREFLOWCONTROL
Define the default softwareflowcontrol (int) constant.

See Also:
Constant Field Values

READTOTALTIMEOUT_KEY

static final java.lang.String READTOTALTIMEOUT_KEY
Define the readtotaltimeout key (String) constant.

See Also:
Constant Field Values

DEFAULT_READTOTALTIMEOUT

static final int DEFAULT_READTOTALTIMEOUT
Define the default readtotaltimeout (int) constant.

See Also:
Constant Field Values

READINTERVALTIMEOUT_KEY

static final java.lang.String READINTERVALTIMEOUT_KEY
Define the readintervaltimeout key (String) constant.

See Also:
Constant Field Values

DEFAULT_READINTERVALTIMEOUT

static final int DEFAULT_READINTERVALTIMEOUT
Define the default readintervaltimeout (int) constant.

See Also:
Constant Field Values

WRITETOTALTIMEOUT_KEY

static final java.lang.String WRITETOTALTIMEOUT_KEY
Define the writetotaltimeout key (String) constant.

See Also:
Constant Field Values

DEFAULT_WRITETOTALTIMEOUT

static final int DEFAULT_WRITETOTALTIMEOUT
Define the default writetotaltimeout (int) constant.

See Also:
Constant Field Values

1.0.0

Copyright (c) 1999, 2007 IBM