PumpAckMessageBody.swift 422 B

123456789101112131415161718192021222324
  1. //
  2. // PumpAckMessageBody.swift
  3. // RileyLink
  4. //
  5. // Created by Pete Schwamb on 3/14/16.
  6. // Copyright © 2016 Pete Schwamb. All rights reserved.
  7. //
  8. import Foundation
  9. public class PumpAckMessageBody: MessageBody {
  10. public static let length = 1
  11. let rxData: Data
  12. public required init?(rxData: Data) {
  13. self.rxData = rxData
  14. }
  15. public var txData: Data {
  16. return rxData
  17. }
  18. }