Uses of Class
charly.server.resources.ChTaskNotStartedException

Packages that use ChTaskNotStartedException
charly.client   
charly.server.devices   
charly.server.resources   
 

Uses of ChTaskNotStartedException in charly.client
 

Methods in charly.client that throw ChTaskNotStartedException
 void ChGpibClient.initialize(int addr, int level)
          usually does not need to be called.
 void ChGpibClient.checkSrq(int dvcAddr)
          causes the server to check the given device on srq and to send an event to the ChGpibListener.
 void ChGpibClient.uncheckSrq(int dvcAddr)
          This method should be used to inform the server that he does not have to check the device on an SRQ.
 void ChGpibClient.send(int dvcAddr, byte[] data, int length)
          sends a specified string to a given device on the gpib-bus.
 void ChGpibClient.send(int dvcAddr, java.lang.String data)
          sends a specified string to a given device on the gpib-bus.
 byte[] ChGpibClient.enter(int dvcAddr)
          receives from a given device on the gpib-bus.
 int ChGpibClient.spoll(int dvcAddr)
          Deprecated. Please use new event listener model.
 int ChGpibClient.ppoll()
          Deprecated. Please use new event listener model.
 void ChGpibClient.transmit(byte[] data, int length)
          sends commands and data to the gpib-bus.
 byte[] ChGpibClient.receive()
          receives non-binary data from the gpib-bus.
 byte[] ChGpibClient.receive(int dvcAddr)
          receives non-binary data from the gpib-bus.
 void ChGpibClient.tarray(byte[] data, int length, byte eoi)
          sends data to the gpib-bus.
 void ChGpibClient.tarray(int dvcAddr, byte[] data, int length, byte eoi)
          sends data to a given device of the gpib-bus.
 byte[] ChGpibClient.rarray()
          receives binary and non-binary data from the gpib-bus.
 byte[] ChGpibClient.rarray(int dvcAddr)
          receives binary and non-binary data from a specified device of the gpib-bus.
 int ChGpibClient.srq()
          Deprecated. Please use new event listener model.
 void ChGpibClient.setTimeOut(int msec)
          sets timeout-time of the GPIB-Bus in msec.
 int ChGpibClient.isListenerPresent(int dvcAddr)
          tests if listener with specified address is present.
 void ChRobClient.setAxisPos(int axisNr, int pos)
          Setzt Position der Achse axisNr
 void ChRobClient.setAxes(int[] pos)
          Setzt Position aller sechs Achsen
 int[] ChRobClient.getAxes()
           
 void ChGpibSrq.addGpibListener(ChGpibListener l)
          adds a ChGpibListener for SRQ-Events.
 void ChGpibSrq.removeGpibListener(ChGpibListener l)
          If no listeners are left, the server is notified that it needn't check the SRQ any more.
 void ChGpibSrq.checkSrq()
          causes the server to check the device on srq and to send an event to the ChGpibListener.
 void ChGpibSrq.listenForSrq()
          waits until a SRQ on this device occured.
 void ChGpibSrq.uncheckSrq()
          This method should be used to inform the server that he does not have to check the device on SRQ.
 void ChGpibUnit.send(byte[] data, int length)
          sends a specified string to the device on the gpib-bus.
 void ChGpibUnit.send(java.lang.String data)
          sends a specified string to the device on the gpib-bus.
 byte[] ChGpibUnit.sendAndEnter(byte[] data, int length)
          sends a string to the device on the gpib-bus and enters a string from this device.
 byte[] ChGpibUnit.sendAndEnter(java.lang.String data)
          sends a string to the device on the gpib-bus and enters a string from this device.
 byte[] ChGpibUnit.enter()
          receives from the device on the gpib-bus.
 byte[] ChGpibUnit.receive()
          receives non-binary data from the gpib-bus.
 void ChGpibUnit.tarray(int dvcAddr, byte[] data, int length, byte eoi)
          sends data to a given device of the gpib-bus.
 byte[] ChGpibUnit.rarray()
          receives binary and non-binary data from the device of the gpib-bus.
 int ChGpibUnit.isListenerPresent()
          tests if listener with specified address is present.
 void ChGpibClientIntern.fireSRQEvent(int dvcAddr)
           
 

Uses of ChTaskNotStartedException in charly.server.devices
 

Methods in charly.server.devices that throw ChTaskNotStartedException
 void ChGpibDevice.initialize(java.lang.String taskID, int addr, int level)
          usually does not need to be called.
 void ChGpibDevice.send(java.lang.String taskID, int dvcAddr, java.lang.String suffix, byte[] data, int length)
          sends a specified string to a given device on the gpib-bus.
 void ChGpibDevice.send(java.lang.String taskID, int dvcAddr, byte[] data, int length)
          sends a specified string to a given device on the gpib-bus.
 byte[] ChGpibDevice.sendAndEnter(java.lang.String taskID, int dvcAddr, java.lang.String suffix, byte[] data, int length)
          sends a specified string to a device on the gpib-bus and enters the result from this device.
 byte[] ChGpibDevice.enter(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          receives from a given device on the gpib-bus.
 byte[] ChGpibDevice.enter(java.lang.String taskID, int dvcAddr)
          receives from a given device on the gpib-bus.
 void ChGpibDevice.checkSrq(java.lang.String taskID, int dvcAddr, ChClientGpib clientGpib)
          This method asks the server to notify the specified client, when an SRQ on the specified device occured.
 void ChGpibDevice.uncheckSrq(java.lang.String taskID, int dvcAddr, ChClientGpib clientGpib)
          This method tells the server to stop notifying the specified client, when an SRQ on the specified device occured.
 int ChGpibDevice.spoll(java.lang.String taskID, int dvcAddr)
          This function will be replaced by an event-listener-model.
 int ChGpibDevice.ppoll(java.lang.String taskID)
          This function will be replaced by an event-listener-model.
 byte[] ChGpibDevice.receive(java.lang.String taskID)
          receives non-binary data from the gpib-bus.
 byte[] ChGpibDevice.receive(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          receives non-binary data from a device of the gpib-bus.
 byte[] ChGpibDevice.receive(java.lang.String taskID, int dvcAddr)
          receives non-binary data from a device of the gpib-bus.
 void ChGpibDevice.transmit(java.lang.String taskID, byte[] data, int length)
          sends data to the gpib-bus.
 void ChGpibDevice.tarray(java.lang.String taskID, byte[] data, int length, byte eoi)
          sends data to the gpib-bus.
 void ChGpibDevice.tarray(java.lang.String taskID, int dvcAddr, java.lang.String suffix, byte[] data, int length, byte eoi)
          sends data to a given device of the gpib-bus.
 void ChGpibDevice.tarray(java.lang.String taskID, int dvcAddr, byte[] data, int length, byte eoi)
          sends data to a given device of the gpib-bus.
 byte[] ChGpibDevice.rarray(java.lang.String taskID)
          receives binary and non-binary data from the gpib-bus.
 byte[] ChGpibDevice.rarray(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          receives binary and non-binary data from a device of the gpib-bus.
 byte[] ChGpibDevice.rarray(java.lang.String taskID, int dvcAddr)
          receives binary and non-binary data from a device of the gpib-bus.
 int ChGpibDevice.srq(java.lang.String taskID)
          This function will be replaced by an event-listener-model.
 void ChGpibDevice.setTimeOut(java.lang.String taskID, int msec)
          sets timeout-time of the GPIB-Bus in msec.
 int ChGpibDevice.isListenerPresent(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          tests if listener with specified address is present.
 int ChGpibDevice.isListenerPresent(java.lang.String taskID, int dvcAddr)
          tests if listener with specified address is present.
 void ChGpibDeviceImpl.initialize(java.lang.String taskID, int addr, int level)
          usually does not need to be called.
 void ChGpibDeviceImpl.send(java.lang.String taskID, int dvcAddr, java.lang.String suffix, byte[] data, int length)
          sends a specified string to a given device on the gpib-bus.
 void ChGpibDeviceImpl.send(java.lang.String taskID, int dvcAddr, byte[] data, int length)
          sends a specified string to a given device on the gpib-bus.
 byte[] ChGpibDeviceImpl.sendAndEnter(java.lang.String taskID, int dvcAddr, java.lang.String suffix, byte[] data, int length)
          sends a specified string to a device on the gpib-bus and enters the result from this device.
 byte[] ChGpibDeviceImpl.enter(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          receives from a given device on the gpib-bus.
 byte[] ChGpibDeviceImpl.enter(java.lang.String taskID, int dvcAddr)
          receives from a given device on the gpib-bus.
 void ChGpibDeviceImpl.checkSrq(java.lang.String taskID, int dvcAddr, ChClientGpib clientGpib)
          This method asks the server to notify the specified client, when an SRQ on the specified device occured.
 void ChGpibDeviceImpl.uncheckSrq(java.lang.String taskID, int dvcAddr, ChClientGpib clientGpib)
          This method tells the server to stop notifying the specified client, when an SRQ on the specified device occured.
 int ChGpibDeviceImpl.spoll(java.lang.String taskID, int dvcAddr)
          This function will be replaced by an event-listener-model.
 int ChGpibDeviceImpl.ppoll(java.lang.String taskID)
          This function will be replaced by an event-listener-model.
 void ChGpibDeviceImpl.transmit(java.lang.String taskID, byte[] data, int length)
          sends data to a the gpib-bus.
 byte[] ChGpibDeviceImpl.receive(java.lang.String taskID)
          receives non-binary data from the gpib-bus.
 byte[] ChGpibDeviceImpl.receive(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          receives non-binary data from a device of the gpib-bus.
 byte[] ChGpibDeviceImpl.receive(java.lang.String taskID, int dvcAddr)
          receives non-binary data from a device of the gpib-bus.
 void ChGpibDeviceImpl.tarray(java.lang.String taskID, byte[] data, int length, byte eoi)
          sends data to the gpib-bus.
 void ChGpibDeviceImpl.tarray(java.lang.String taskID, int dvcAddr, java.lang.String suffix, byte[] data, int length, byte eoi)
          sends data to a given device of the gpib-bus.
 void ChGpibDeviceImpl.tarray(java.lang.String taskID, int dvcAddr, byte[] data, int length, byte eoi)
          sends data to a given device of the gpib-bus.
 byte[] ChGpibDeviceImpl.rarray(java.lang.String taskID)
          receives binary and non-binary data from the gpib-bus.
 byte[] ChGpibDeviceImpl.rarray(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          receives binary and non-binary data from a given device of the gpib-bus.
 byte[] ChGpibDeviceImpl.rarray(java.lang.String taskID, int dvcAddr)
          receives binary and non-binary data from a given device of the gpib-bus.
 int ChGpibDeviceImpl.srq(java.lang.String taskID)
          This function will be replaced by an event-listener-model.
 void ChGpibDeviceImpl.setTimeOut(java.lang.String taskID, int msec)
          sets timeout-time of the GPIB-Bus in msec.
 int ChGpibDeviceImpl.isListenerPresent(java.lang.String taskID, int dvcAddr, java.lang.String suffix)
          tests if listener with specified address is present.
 int ChGpibDeviceImpl.isListenerPresent(java.lang.String taskID, int dvcAddr)
          tests if listener with specified address is present.
 void ChRobDeviceImpl.setAxisPos(java.lang.String taskID, int axisNr, int pos)
          Setzt Position der Achse axisNr
 void ChRobDeviceImpl.setAxes(java.lang.String taskID, int[] pos)
          Setzt Position aller sechs Achsen
 void ChRobDevice.setAxisPos(java.lang.String taskID, int axisNr, int pos)
          Setzt Position der Achse axisNr
 void ChRobDevice.setAxes(java.lang.String taskID, int[] pos)
          Setzt Position aller sechs Achsen
 

Uses of ChTaskNotStartedException in charly.server.resources
 

Methods in charly.server.resources that throw ChTaskNotStartedException
 void ChRsrcManagerImpl.assertAccess(java.lang.String taskID, java.lang.String rsrcName)
          tests if task with taskID has access to ressource called rsrcName.