NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ndn-consumer-window.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
20 #ifndef NDN_CONSUMER_WINDOW_H
21 #define NDN_CONSUMER_WINDOW_H
22 
23 #include "ns3/ndnSIM/model/ndn-common.hpp"
24 
25 #include "ndn-consumer.hpp"
26 #include "ns3/traced-value.h"
27 
28 namespace ns3 {
29 namespace ndn {
30 
39 class ConsumerWindow : public Consumer {
40 public:
41  static TypeId
42  GetTypeId();
43 
48 
49  // From App
50  virtual void
51  OnData(shared_ptr<const Data> contentObject);
52 
53  virtual void
54  OnTimeout(uint32_t sequenceNumber);
55 
56  virtual void
57  WillSendOutInterest(uint32_t sequenceNumber);
58 
59 protected:
64  virtual void
66 
67 private:
68  virtual void
69  SetWindow(uint32_t window);
70 
71  uint32_t
72  GetWindow() const;
73 
74  virtual void
75  SetPayloadSize(uint32_t payload);
76 
77  uint32_t
78  GetPayloadSize() const;
79 
80  double
81  GetMaxSize() const;
82 
83  void
84  SetMaxSize(double size);
85 
86  uint32_t
87  GetSeqMax() const;
88 
89  void
90  SetSeqMax(uint32_t seqMax);
91 
92 private:
93  uint32_t m_payloadSize; // expected payload size
94  double m_maxSize; // max size to request
95 
96  uint32_t m_initialWindow;
97  bool m_setInitialWindowOnTimeout;
98 
99  TracedValue<uint32_t> m_window;
100  TracedValue<uint32_t> m_inFlight;
101 };
102 
103 } // namespace ndn
104 } // namespace ns3
105 
106 #endif
Ndn application for sending out Interest packets (window-based)
virtual void OnTimeout(uint32_t sequenceNumber)
Timeout event.
virtual void ScheduleNextPacket()
Constructs the Interest packet and sends it using a callback to the underlying NDN protocol...
NDN application for sending out Interest packets.
ConsumerWindow()
Default constructor.
virtual void OnData(shared_ptr< const Data > contentObject)
Method that will be called every time new Data arrives.
virtual void WillSendOutInterest(uint32_t sequenceNumber)
An event that is fired just before an Interest packet is actually send out (send is inevitable) ...