Uses of Interface
uk.ac.manchester.spinnaker.connections.model.Connection
Package | Description |
---|---|
uk.ac.manchester.spinnaker.alloc.proxy |
SpiNNaker message proxying support code.
|
uk.ac.manchester.spinnaker.connections |
Classes used to model types of connections that talk to SpiNNaker.
|
uk.ac.manchester.spinnaker.connections.model |
Abstract model classes for connections.
|
uk.ac.manchester.spinnaker.transceiver |
How to actually talk to a SpiNNaker machine.
|
-
Uses of Connection in uk.ac.manchester.spinnaker.alloc.proxy
Classes in uk.ac.manchester.spinnaker.alloc.proxy that implement Connection Modifier and Type Class Description class
ProxyUDPConnection
The low-level handler for proxy connections. -
Uses of Connection in uk.ac.manchester.spinnaker.connections
Classes in uk.ac.manchester.spinnaker.connections with type parameters of type Connection Modifier and Type Interface Description interface
ConnectionSelector<T extends Connection>
A connection selector for (especially multi-connection) processes.class
SingletonConnectionSelector<T extends Connection>
A selector that only ever handles a single connection.Classes in uk.ac.manchester.spinnaker.connections that implement Connection Modifier and Type Class Description class
BMPConnection
A connection for talking to one or more Board Management Processors (BMPs).class
BootConnection
A connection to the SpiNNaker board that uses UDP for booting.class
DelegatingSCPConnection
An SCP connection that actually delegates message sending and receiving to another connection.class
EIEIOConnection
A UDP connection for sending and receiving raw EIEIO messages.class
IPAddressConnection
A connection that detects any UDP packet that is transmitted by SpiNNaker boards prior to boot.class
NotificationConnection
A UDP connection for sending and receiving notification protocol messages.class
SCPConnection
An SDP connection to talk SCP (SpiNNaker Control Protocol) to SC&MP on a SpiNNaker system, and to the cores managed by it.class
SDPConnection
A UDP socket connection that talks SDP (SpiNNaker Datagram Protocol) to SpiNNaker.class
UDPConnection<T>
A connection to SpiNNaker over UDP/IPv4. -
Uses of Connection in uk.ac.manchester.spinnaker.connections.model
Subinterfaces of Connection in uk.ac.manchester.spinnaker.connections.model Modifier and Type Interface Description interface
SCPSenderReceiver
Sends an SCP request and receives a response to it. -
Uses of Connection in uk.ac.manchester.spinnaker.transceiver
Methods in uk.ac.manchester.spinnaker.transceiver that return types with arguments of type Connection Modifier and Type Method Description Set<Connection>
Transceiver. getConnections()
Get the currently known connections to the board, made up of those passed in to the transceiver and those that are discovered during calls toTransceiver.discoverScampConnections()
.Methods in uk.ac.manchester.spinnaker.transceiver with parameters of type Connection Modifier and Type Method Description protected void
Transceiver. addConnection(Connection connection)
protected abstract void
UDPTransceiver. addConnection(Connection connection)
Add a connection to the collection of general connections managed by this class.boolean
Transceiver. isConnected(Connection connection)
boolean
TransceiverInterface. isConnected(Connection connection)
Determines if the board can be contacted.Constructor parameters in uk.ac.manchester.spinnaker.transceiver with type arguments of type Connection Constructor Description Transceiver(MachineVersion version, Collection<Connection> connections)
Create a transceiver.Transceiver(MachineVersion version, Collection<Connection> connections, Collection<ChipLocation> ignoredChips, Map<ChipLocation,Set<Integer>> ignoredCores, Map<ChipLocation,EnumSet<Direction>> ignoredLinks, Collection<Transceiver.ConnectionDescriptor> scampConnections, Integer maxSDRAMSize)
Create a transceiver.